PKG_NAME:=luci-app-privoxy
-PKG_VERSION:=1.0.6
-
-PKG_RELEASE:=2
-
PKG_LICENSE:=Apache-2.0
LUCI_TITLE:=LuCI Support for Privoxy WEB proxy
-LUCI_DEPENDS:=+luci-compat +luci-lib-ipkg +luci-base +privoxy
+LUCI_DEPENDS:=+luci-base +privoxy
define Package/$(PKG_NAME)/config
# shown in make menuconfig <Help>
help
$(LUCI_TITLE)
- .
- Version: $(PKG_VERSION)-$(PKG_RELEASE)
endef
include ../../luci.mk
--- /dev/null
+'use strict';
+'require uci';
+'require form';
+'require rpc';
+'require tools.widgets as widgets';
+'require fs';
+'require view';
+
+return view.extend({
+
+ render: function(data) {
+ const m = new form.Map('privoxy', _('Privoxy'),
+ _('Configure the Privoxy proxy daemon settings.'));
+
+ const s = m.section(form.NamedSection, 'privoxy', 'privoxy', _('Privoxy Settings'));
+
+
+ // Tab: System
+ s.tab('sys', _('System'));
+ s.taboption('sys', form.Flag, '_enabled', _('Enabled'), _('Enable/Disable autostart of Privoxy'))
+
+ let bootDelay = s.taboption('sys', form.Value, 'boot_delay', _('Boot delay'),
+ _('Delay (in seconds) during system boot before Privoxy starts.'));
+
+ bootDelay.datatype = 'uinteger';
+ bootDelay.placeholder = '10';
+ bootDelay.default = '10';
+
+
+ // Tab: Documentation
+ s.tab('doc', _('Documentation'), _("If you intend to operate Privoxy for more users than just yourself, "
+ + "it might be a good idea to let them know how to reach you, what you block "
+ + "and why you do that, your policies, etc."));
+
+ s.taboption('doc', form.Value, 'hostname', _('Hostname'),
+ _('The hostname shown on the CGI pages.'))
+ //.placeholder = sys.hostname();
+
+ s.taboption('doc', form.Value, 'user_manual', _('User Manual'),
+ _('Location of the Privoxy User Manual.')).placeholder = 'http://www.privoxy.org/user-manual/';
+
+ let adminEmail = s.taboption('doc', form.Value, 'admin_address', _('Admin Email'),
+ _('Email address for the Privoxy administrator.'));
+ adminEmail.datatype = 'email';
+
+ s.taboption('doc', form.Value, 'proxy_info_url', _('Proxy Info URL'),
+ _('URL to documentation about the local Privoxy setup.'));
+
+ s.taboption('doc', form.Value, 'trust_info_url', _('Trust Info URL'),
+ _('URL shown if access to an untrusted page is denied. Only applies if trust mechanism is enabled.'));
+
+
+ // Tab: Filter
+ s.tab('filtering', _('Files and Directories'), _("Privoxy can (and normally does) use a number of other files "
+ + "for additional configuration, help and logging. This section of "
+ + "the configuration file tells Privoxy where to find those other files."));
+
+ // LOGDIR
+ let logdir = s.taboption('filtering', form.Value, 'logdir', _('Log Directory'),
+ _('The directory where all logging takes place (i.e. where the logfile is located).<br />No trailing "/", please.'));
+ logdir.default = '/var/log';
+ logdir.rmempty = false;
+
+ // LOGFILE
+ let logfile = s.taboption('filtering', form.Value, 'logfile', _('Log File'),
+ _('The log file to use. File name, relative to log directory.'));
+ logfile.default = 'privoxy.log';
+ logfile.rmempty = false;
+ logfile.validate = function(section_id, value) {
+ if (!value || value.trim() === '')
+ return _('Mandatory Input: No File given!');
+ return true;
+ };
+
+ // CONFDIR
+ let confdir = s.taboption('filtering', form.Value, 'confdir', _('Configuration Directory'),
+ _('The directory where the other configuration files are located.'));
+ confdir.default = '/var/etc/privoxy';
+ confdir.rmempty = false;
+
+ // TEMPLDIR
+ let templdir = s.taboption('filtering', form.Value, 'templdir', _('Template Directory'),
+ _('An alternative directory where the templates are loaded from.<br />No trailing "/", please.'));
+ templdir.placeholder = '/etc/privoxy/templates';
+ templdir.rmempty = true;
+
+ // TEMPORARY DIRECTORY
+ let tmpdir = s.taboption('filtering', form.Value, 'temporary_directory', _('Temporary Directory'),
+ _("A directory where Privoxy can create temporary files.<br /><strong>Only when using 'external filters', Privoxy has to create temporary files.</strong>"));
+ tmpdir.rmempty = true;
+ tmpdir.placeholder = '/tmp';
+ tmpdir.default = '/tmp';
+
+ // ACTIONSFILE
+ let actionsfile = s.taboption('filtering', form.DynamicList, 'actionsfile', _('Action Files'),
+ _('The actions file(s) to use. Multiple actionsfile lines are permitted, and are in fact recommended!') +
+ '<br /><strong>match-all.action := </strong>' + _('Actions that are applied to all sites and maybe overruled later on.') +
+ '<br /><strong>default.action := </strong>' + _('Main actions file') +
+ '<br /><strong>user.action := </strong>' + _('User customizations'));
+ actionsfile.rmempty = true;
+
+ // FILTERFILE
+ let filterfile = s.taboption('filtering', form.DynamicList, 'filterfile', _('Filter files'),
+ _('The filter files contain content modification rules that use regular expressions.'));
+ filterfile.rmempty = true;
+
+
+ // TRUSTFILE
+ let trustfile = s.taboption('filtering', form.Value, 'trustfile', _('Trust file'),
+ _('The trust mechanism is an experimental feature for building white-lists and should be used with care.') +
+ '<br /><strong>' + _('It is NOT recommended for the casual user.') + '</strong>');
+ trustfile.placeholder = 'user.trust';
+ trustfile.rmempty = true;
+
+
+ // Tab: Access
+ s.tab('access', _('Access Control'), _("This tab controls the security-relevant aspects of Privoxy's configuration."));
+
+ // LISTEN ADDRESS
+ let listen = s.taboption('access', form.DynamicList, 'listen_address', _('Listen addresses'),
+ _('The address and TCP port on which Privoxy will listen for client requests.') + '<br />' +
+ _('Syntax: ') + 'IPv4:Port / [IPv6]:Port / Host:Port');
+ listen.default = '127.0.0.1:8118';
+ listen.rmempty = false;
+ listen.datatype = 'or(hostport,ipaddrport(1))';
+
+ // PERMIT ACCESS
+ let permit = s.taboption('access', form.DynamicList, 'permit_access', _('Permit access'),
+ _('Who can access what.') + '<br /><strong>' + _('Please read Privoxy manual for details!') + '</strong>');
+ permit.rmempty = true;
+ permit.datatype = 'ipmask';
+
+ // DENY ACCESS
+ let deny = s.taboption('access', form.DynamicList, 'deny_access', _('Deny access'),
+ _('Who can access what.') + '<br /><strong>' + _('Please read Privoxy manual for details!') + '</strong>');
+ deny.rmempty = true;
+ deny.datatype = 'ipmask';
+
+ // BUFFER LIMIT
+ let buffer = s.taboption('access', form.Value, 'buffer_limit', _('Buffer Limit'),
+ _('Maximum size (in KB) of the buffer for content filtering.') + '<br />' +
+ _('Value range 1 to 4096, no entry defaults to 4096'));
+ buffer.default = 4096;
+ buffer.rmempty = true;
+ buffer.datatype = 'and(uinteger,min(1),max(4096))'
+
+ // TOGGLE
+ let toggle = s.taboption('access', form.Flag, 'toggle', _('Toggle Status'),
+ _('Enable/Disable filtering when Privoxy starts.') + '<br />' +
+ _('Disabled == Transparent Proxy Mode'));
+ toggle.default = '1';
+ toggle.rmempty = false;
+
+ // ENABLE REMOTE TOGGLE
+ let remoteToggle = s.taboption('access', form.Flag, 'enable_remote_toggle', _('Enable remote toggle'),
+ _('Whether or not the web-based toggle feature may be used.'));
+ remoteToggle.rmempty = true;
+
+ // ENABLE REMOTE HTTP TOGGLE
+ let httpToggle = s.taboption('access', form.Flag, 'enable_remote_http_toggle', _('Enable remote toggle via HTTP'),
+ _('Whether or not Privoxy recognizes special HTTP headers to change toggle state.') + '<br /><strong>' +
+ _('This option will be removed in future releases as it has been obsoleted by the more general header taggers.') + '</strong>');
+ httpToggle.rmempty = true;
+
+ // ENABLE EDIT ACTIONS
+ let editActions = s.taboption('access', form.Flag, 'enable_edit_actions', _('Enable action file editor'),
+ _('Whether or not the web-based actions file editor may be used.'));
+ editActions.rmempty = true;
+
+ // ENFORCE BLOCKS
+ let enforce = s.taboption('access', form.Flag, 'enforce_blocks', _('Enforce page blocking'),
+ _('If enabled, Privoxy hides the "go there anyway" link. The user obviously should not be able to bypass any blocks.'));
+ enforce.rmempty = true;
+
+
+ // Tab: Forward
+ s.tab('forward', _('Forwarding'), ("Configure here the routing of HTTP requests through a chain of multiple proxies. "
+ + "Note that parent proxies can severely decrease your privacy level. "
+ + "Also specified here are SOCKS proxies."));
+ let o = s.taboption("forward", form.Flag, "enable_proxy_authentication_forwarding", _("Enable proxy authentication forwarding"));
+ o.description = _("Whether or not proxy authentication through Privoxy should work.") +
+ "<br /><strong>" + _("Enabling this option is NOT recommended if there is no parent proxy that requires authentication!") + "</strong>";
+
+ o = s.taboption("forward", form.DynamicList, "forward", _("Forward HTTP"));
+ o.description = _("To which parent HTTP proxy specific requests should be routed.") +
+ "<br />" + _("Syntax: target_pattern http_parent[:port]");
+
+ o = s.taboption("forward", form.DynamicList, "forward_socks4", _("Forward SOCKS 4"));
+ o.description = _("Through which SOCKS proxy (and optionally to which parent HTTP proxy) specific requests should be routed.") +
+ "<br />" + _("Syntax: target_pattern socks_proxy[:port] http_parent[:port]");
+
+ o = s.taboption("forward", form.DynamicList, "forward_socks4a", _("Forward SOCKS 4A"));
+ o.description = _("Through which SOCKS proxy (and optionally to which parent HTTP proxy) specific requests should be routed.") +
+ "<br />" + _("Syntax: target_pattern socks_proxy[:port] http_parent[:port]");
+
+ o = s.taboption("forward", form.DynamicList, "forward_socks5", _("Forward SOCKS 5"));
+ o.description = _("Through which SOCKS proxy (and optionally to which parent HTTP proxy) specific requests should be routed.") +
+ "<br />" + _("Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]");
+
+ o = s.taboption("forward", form.DynamicList, "forward_socks5t", _("Forward SOCKS 5t"));
+ o.description = _("Through which SOCKS proxy (and optionally to which parent HTTP proxy) specific requests should be routed.") +
+ "<br />" + _("Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]");
+
+
+ // Tab: Misc
+ s.tab('misc', _('Misc'));
+
+ o = s.taboption("misc", form.Flag, "accept_intercepted_requests", _("Accept intercepted requests"));
+ o.description = _("Whether intercepted requests should be treated as valid.");
+ o.orientation = "horizontal";
+
+ o = s.taboption("misc", form.Flag, "allow_cgi_request_crunching", _("Allow CGI request crunching"));
+ o.description = _("Whether requests to Privoxy's CGI pages can be blocked or redirected.");
+ o.orientation = "horizontal";
+
+ o = s.taboption("misc", form.Flag, "split_large_forms", _("Split large forms"));
+ o.description = _("Whether the CGI interface should stay compatible with broken HTTP clients.");
+ o.orientation = "horizontal";
+
+ o = s.taboption("misc", form.Value, "keep_alive_timeout", _("Keep-alive timeout"));
+ o.description = _("Number of seconds after which an open connection will no longer be reused.");
+ o.datatype = 'uinteger';
+
+ o = s.taboption("misc", form.Flag, "tolerate_pipelining", _("Tolerate pipelining"));
+ o.description = _("Whether or not pipelined requests should be served.");
+ o.orientation = "horizontal";
+
+ o = s.taboption("misc", form.Value, "default_server_timeout", _("Default server timeout"));
+ o.description = _("Assumed server-side keep-alive timeout (in seconds) if not specified by the server.");
+ o.datatype = 'uinteger';
+
+ o = s.taboption("misc", form.Flag, "connection_sharing", _("Connection sharing"));
+ o.description = _("Whether or not outgoing connections that have been kept alive should be shared between different incoming connections.");
+ o.orientation = "horizontal";
+
+ o = s.taboption("misc", form.Value, "socket_timeout", _("Socket timeout"));
+ o.default = 300;
+ o.description = _("Number of seconds after which a socket times out if no data is received.");
+ o.datatype = 'and(uinteger,min(1),max(300))'
+
+ o = s.taboption("misc", form.Value, "max_client_connections", _("Max. client connections"));
+ o.default = 128;
+ o.description = _("Maximum number of client connections that will be served.");
+ o.datatype = 'uinteger';
+
+ o = s.taboption("misc", form.Flag, "handle_as_empty_doc_returns_ok", _("Handle as empty doc returns ok"));
+ o.description = _("The status code Privoxy returns for pages blocked with +handle-as-empty-document.");
+ o.orientation = "horizontal";
+
+ o = s.taboption("misc", form.Flag, "enable_compression", _("Enable compression"));
+ o.description = _("Whether or not buffered content is compressed before delivery.");
+ o.orientation = "horizontal";
+
+ o = s.taboption("misc", form.Value, "compression_level", _("Compression level"));
+ o.default = 1;
+ o.description = _("The compression level that is passed to the zlib library when compressing buffered content.");
+ o.datatype = 'and(uinteger,min(1),max(9))'
+
+ o = s.taboption("misc", form.Value, "client_header_order", _("Client header order"));
+ o.description = _("The order in which client headers are sorted before forwarding them.") +
+ "<br />" + _("Syntax: Client header names delimited by spaces.");
+
+
+ // Tab: Debug
+ s.tab('debug', _('Debug'));
+
+ o = s.taboption("debug", form.Flag, "single_threaded", _("Single Threaded"));
+ o.description = _("Whether to run only one server thread.") +
+ "<br /><strong>" + _("This option is only there for debugging purposes. It will drastically reduce performance.") + "</strong>";
+ o.orientation = "horizontal";
+
+ o = s.taboption("debug", form.Flag, "debug_1", _("Debug 1"));
+ o.description = _("Log the destination for each request Privoxy let through. See also 'Debug 1024'.");
+ o.orientation = "horizontal";
+
+ o = s.taboption("debug", form.Flag, "debug_2", _("Debug 2"));
+ o.description = _("Show each connection status");
+ o.orientation = "horizontal";
+
+ o = s.taboption("debug", form.Flag, "debug_4", _("Debug 4"));
+ o.description = _("Show I/O status");
+ o.orientation = "horizontal";
+
+ o = s.taboption("debug", form.Flag, "debug_8", _("Debug 8"));
+ o.description = _("Show header parsing");
+ o.orientation = "horizontal";
+
+ o = s.taboption("debug", form.Flag, "debug_16", _("Debug 16"));
+ o.description = _("Log all data written to the network");
+ o.orientation = "horizontal";
+
+ o = s.taboption("debug", form.Flag, "debug_32", _("Debug 32"));
+ o.description = _("Debug force feature");
+ o.orientation = "horizontal";
+
+ o = s.taboption("debug", form.Flag, "debug_64", _("Debug 64"));
+ o.description = _("Debug regular expression filters");
+ o.orientation = "horizontal";
+
+ o = s.taboption("debug", form.Flag, "debug_128", _("Debug 128"));
+ o.description = _("Debug redirects");
+ o.orientation = "horizontal";
+
+ o = s.taboption("debug", form.Flag, "debug_256", _("Debug 256"));
+ o.description = _("Debug GIF de-animation");
+ o.orientation = "horizontal";
+
+ o = s.taboption("debug", form.Flag, "debug_512", _("Debug 512"));
+ o.description = _("Common Log Format");
+ o.orientation = "horizontal";
+
+ o = s.taboption("debug", form.Flag, "debug_1024", _("Debug 1024"));
+ o.description = _("Log the destination for requests Privoxy didn't let through, and the reason why.");
+ o.orientation = "horizontal";
+
+ o = s.taboption("debug", form.Flag, "debug_2048", _("Debug 2048"));
+ o.description = _("CGI user interface");
+ o.orientation = "horizontal";
+
+ o = s.taboption("debug", form.Flag, "debug_4096", _("Debug 4096"));
+ o.description = _("Startup banner and warnings.");
+ o.orientation = "horizontal";
+
+ o = s.taboption("debug", form.Flag, "debug_8192", _("Debug 8192"));
+ o.description = _("Non-fatal errors - *we highly recommended enabling this*");
+ o.orientation = "horizontal";
+
+ // debug_16384 is skipped
+
+ o = s.taboption("debug", form.Flag, "debug_32768", _("Debug 32768"));
+ o.description = _("Log all data read from the network");
+ o.orientation = "horizontal";
+
+ o = s.taboption("debug", form.Flag, "debug_65536", _("Debug 65536"));
+ o.description = _("Log the applying actions");
+ o.orientation = "horizontal";
+
+
+ return m.render();
+ }
+});
+++ /dev/null
--- Copyright 2014-2016 Christian Schoenebeck <christian dot schoenebeck at gmail dot com>
--- Licensed under the Apache License, Version 2.0
-
-module("luci.controller.privoxy", package.seeall)
-
-local NX = require "nixio"
-local NXFS = require "nixio.fs"
-local DISP = require "luci.dispatcher"
-local HTTP = require "luci.http"
-local I18N = require "luci.i18n" -- not globally avalible here
-local IPKG = require "luci.model.ipkg"
-local UCI = require "luci.model.uci"
-local UTIL = require "luci.util"
-local SYS = require "luci.sys"
-
-local srv_name = "privoxy"
-local srv_ver_min = "3.0.23" -- minimum version of service required
-local srv_ver_cmd = [[/usr/sbin/privoxy --version | awk {'print $3'}]]
-local app_name = "luci-app-privoxy"
-local app_title = "Privoxy WEB proxy"
-local app_version = "1.0.6-1"
-
-function index()
- entry( {"admin", "services", "privoxy"}, cbi("privoxy"), _("Privoxy WEB proxy"), 59).acl_depends = { "luci-app-privoxy" }
- entry( {"admin", "services", "privoxy", "logview"}, call("logread") ).leaf = true
- entry( {"admin", "services", "privoxy", "startstop"}, post("startstop") ).leaf = true
- entry( {"admin", "services", "privoxy", "status"}, call("get_pid") ).leaf = true
-end
-
--- Application specific information functions
-function app_description()
- return I18N.translate("Privoxy is a non-caching web proxy with advanced filtering "
- .. "capabilities for enhancing privacy, modifying web page data and HTTP headers, "
- .. "controlling access, and removing ads and other obnoxious Internet junk.")
- .. [[<br /><strong>]]
- .. I18N.translate("For help use link at the relevant option")
- .. [[</strong>]]
-end
-
--- Standardized application/service functions
-function app_title_main()
- return [[<a href="javascript:alert(']]
- .. I18N.translate("Version Information")
- .. [[\n\n]] .. app_name
- .. [[\n\t]] .. I18N.translate("Version") .. [[:\t]] .. app_version
- .. [[\n\n]] .. srv_name .. [[ ]] .. I18N.translate("required") .. [[:]]
- .. [[\n\t]] .. I18N.translate("Version") .. [[:\t]]
- .. srv_ver_min .. [[ ]] .. I18N.translate("or higher")
- .. [[\n\n]] .. srv_name .. [[ ]] .. I18N.translate("installed") .. [[:]]
- .. [[\n\t]] .. I18N.translate("Version") .. [[:\t]]
- .. (service_version() or I18N.translate("NOT installed"))
- .. [[\n\n]]
- .. [[')">]]
- .. I18N.translate(app_title)
- .. [[</a>]]
-end
-function service_version()
- local ver = nil
- IPKG.list_installed(srv_name, function(n, v, d)
- if v and (#v > 0) then ver = v end
- end
- )
- if not ver or (#ver == 0) then
- ver = UTIL.exec(srv_ver_cmd)
- if #ver == 0 then ver = nil end
- end
- return ver
-end
-function service_ok()
- return IPKG.compare_versions((service_version() or "0"), ">=", srv_ver_min)
-end
-function service_update()
- local url = DISP.build_url("admin", "system", "packages")
- if not service_version() then
- return [[<h3><strong><br /><font color="red">    ]]
- .. I18N.translate("Software package '%s' is not installed." % srv_name)
- .. [[</font><br /><br />    ]]
- .. I18N.translate("required") .. [[: ]] .. srv_name .. [[ ]] .. srv_ver_min .. " " .. I18N.translate("or higher")
- .. [[<br /><br />    ]]
- .. [[<a href="]] .. url ..[[">]]
- .. I18N.translate("Please install current version !")
- .. [[</a><br /> </strong></h3>]]
- else
- return [[<h3><strong><br /><br /><font color="red">    ]]
- .. I18N.translate("Software package '%s' is outdated." % srv_name)
- .. [[</font><br /><br />    ]]
- .. I18N.translate("installed") .. ": " .. service_version()
- .. [[<br /><br />    ]]
- .. I18N.translate("required") .. ": " .. srv_ver_min .. " " .. I18N.translate("or higher")
- .. [[<br /><br />    ]]
- .. [[<a href="]] .. url ..[[">]]
- .. I18N.translate("Please update to the current version!")
- .. [[</a><br /><br /> </strong></h3>]]
- end
-end
-
--- called by XHR.get from detail_logview.htm
-function logread()
- -- read application settings
- local uci = UCI.cursor()
- local logdir = uci:get("privoxy", "privoxy", "logdir") or "/var/log"
- local logfile = uci:get("privoxy", "privoxy", "logfile") or "privoxy.log"
- uci:unload("privoxy")
-
- local ldata=NXFS.readfile(logdir .. "/" .. logfile)
- if not ldata or #ldata == 0 then
- ldata="_nodata_"
- end
- HTTP.write(ldata)
-end
-
--- called by XHR.get from detail_startstop.htm
-function startstop()
- local pid = get_pid(true)
- if pid > 0 then
- SYS.call("/etc/init.d/privoxy stop")
- NX.nanosleep(1) -- sleep a second
- if NX.kill(pid, 0) then -- still running
- NX.kill(pid, 9) -- send SIGKILL
- end
- pid = 0
- else
- SYS.call("/etc/init.d/privoxy start")
- NX.nanosleep(1) -- sleep a second
- pid = tonumber(NXFS.readfile("/var/run/privoxy.pid") or 0 )
- if pid > 0 and not NX.kill(pid, 0) then
- pid = 0 -- process did not start
- end
- end
- HTTP.write(tostring(pid)) -- HTTP needs string not number
-end
-
--- called by XHR.poll from detail_startstop.htm
--- and from lua (with parameter "true")
-function get_pid(from_lua)
- local pid = tonumber(NXFS.readfile("/var/run/privoxy.pid") or 0 )
- if pid > 0 and not NX.kill(pid, 0) then
- pid = 0
- end
- if from_lua then
- return pid
- else
- HTTP.write(tostring(pid)) -- HTTP needs string not number
- end
-end
-
--- replacement of build-in parse of UCI option
--- modified AbstractValue.parse(self, section, novld) from cbi.lua
--- validate is called if rmempty/optional true or false
--- write is called if rmempty/optional true or false
-function value_parse(self, section, novld)
- local fvalue = self:formvalue(section)
- local fexist = ( fvalue and (#fvalue > 0) ) -- not "nil" and "not empty"
- local cvalue = self:cfgvalue(section)
- local rm_opt = ( self.rmempty or self.optional )
- local eq_cfg -- flag: equal cfgvalue
-
- -- If favlue and cvalue are both tables and have the same content
- -- make them identical
- if type(fvalue) == "table" and type(cvalue) == "table" then
- eq_cfg = (#fvalue == #cvalue)
- if eq_cfg then
- for i=1, #fvalue do
- if cvalue[i] ~= fvalue[i] then
- eq_cfg = false
- end
- end
- end
- if eq_cfg then
- fvalue = cvalue
- end
- end
-
- -- removed parameter "section" from function call because used/accepted nowhere
- -- also removed call to function "transfer"
- local vvalue, errtxt = self:validate(fvalue)
-
- -- error handling; validate return "nil"
- if not vvalue then
- if novld then -- and "novld" set
- return -- then exit without raising an error
- end
-
- if fexist then -- and there is a formvalue
- self:add_error(section, "invalid", errtxt or self.title .. ": invalid")
- return -- so data are invalid
- elseif not rm_opt then -- and empty formvalue but NOT (rmempty or optional) set
- self:add_error(section, "missing", errtxt or self.title .. ": missing")
- return -- so data is missing
- elseif errtxt then
- self:add_error(section, "invalid", errtxt)
- return
- end
--- error ("\n option: " .. self.option ..
--- "\n fvalue: " .. tostring(fvalue) ..
--- "\n fexist: " .. tostring(fexist) ..
--- "\n cvalue: " .. tostring(cvalue) ..
--- "\n vvalue: " .. tostring(vvalue) ..
--- "\n vexist: " .. tostring(vexist) ..
--- "\n rm_opt: " .. tostring(rm_opt) ..
--- "\n eq_cfg: " .. tostring(eq_cfg) ..
--- "\n eq_def: " .. tostring(eq_def) ..
--- "\n novld : " .. tostring(novld) ..
--- "\n errtxt: " .. tostring(errtxt) )
- end
-
- -- lets continue with value returned from validate
- eq_cfg = ( vvalue == cvalue ) -- update equal_config flag
- local vexist = ( vvalue and (#vvalue > 0) ) and true or false -- not "nil" and "not empty"
- local eq_def = ( vvalue == self.default ) -- equal_default flag
-
- -- (rmempty or optional) and (no data or equal_default)
- if rm_opt and (not vexist or eq_def) then
- if self:remove(section) then -- remove data from UCI
- self.section.changed = true -- and push events
- end
- return
- end
-
- -- not forcewrite and no changes, so nothing to write
- if not self.forcewrite and eq_cfg then
- return
- end
-
- -- we should have a valid value here
- assert (vvalue, "\n option: " .. self.option ..
- "\n fvalue: " .. tostring(fvalue) ..
- "\n fexist: " .. tostring(fexist) ..
- "\n cvalue: " .. tostring(cvalue) ..
- "\n vvalue: " .. tostring(vvalue) ..
- "\n vexist: " .. tostring(vexist) ..
- "\n rm_opt: " .. tostring(rm_opt) ..
- "\n eq_cfg: " .. tostring(eq_cfg) ..
- "\n eq_def: " .. tostring(eq_def) ..
- "\n errtxt: " .. tostring(errtxt) )
-
- -- write data to UCI; raise event only on changes
- if self:write(section, vvalue) and not eq_cfg then
- self.section.changed = true
- end
-end
+++ /dev/null
--- Copyright 2014-2015 Christian Schoenebeck <christian dot schoenebeck at gmail dot com>
--- Licensed under the Apache License, Version 2.0
-
-local NXFS = require "nixio.fs"
-local SYS = require "luci.sys"
-local UTIL = require "luci.util"
-local DISP = require "luci.dispatcher"
-local DTYP = require "luci.cbi.datatypes"
-local CTRL = require "luci.controller.privoxy" -- this application's controller
-
-local HELP = [[<a href="http://www.privoxy.org/user-manual/config.html#%s" target="_blank">%s</a>]]
-
--- Error handling if wrong privoxy version installed -- ########################
-if not CTRL.service_ok() then
- local f = SimpleForm("_sf")
- f.title = CTRL.app_title_main()
- f.description = CTRL.app_description()
- f.embedded = true
- f.submit = false
- f.reset = false
-
- local s = f:section(SimpleSection)
- local v = s:option(DummyValue, "_dv")
- v.titleref = DISP.build_url("admin", "system", "packages")
- v.rawhtml = true
- v.value = CTRL.service_update()
- return f
-end
-
--- #################################################################################################
--- Error handling if no config, create an empty one -- #########################
-if not NXFS.access("/etc/config/privoxy") then
- NXFS.writefile("/etc/config/privoxy", "")
-end
-
--- cbi-map -- ##################################################################
-local m = Map("privoxy")
-m.title = CTRL.app_title_main()
-m.description = CTRL.app_description()
-function m.commit_handler(self)
- if self.changed then -- changes ?
- os.execute("/etc/init.d/privoxy reload &") -- reload configuration
- end
-end
-
--- cbi-section -- ##############################################################
-local ns = m:section( NamedSection, "privoxy", "privoxy")
-function ns.cfgvalue(self, section)
- if not self.map:get("system") then -- section might not exist
- self.map:set("system", nil, "system")
- end
- if not self.map:get(section) then -- section might not exist
- self.map:set(section, nil, self.sectiontype)
- end
- return self.map:get(section)
-end
-
-ns:tab("sys",
- translate("System"),
- nil )
-local function err_tab_sys(title, msg)
- return string.format(translate("System") .. " - %s: %s", title, msg )
-end
-
-ns:tab("doc",
- translate("Documentation"),
- translate("If you intend to operate Privoxy for more users than just yourself, "
- .. "it might be a good idea to let them know how to reach you, what you block "
- .. "and why you do that, your policies, etc.") )
-local function err_tab_doc(title, msg)
- return string.format(translate("Documentation") .. " - %s: %s", title, msg )
-end
-
-ns:tab("filter",
- translate("Files and Directories"),
- translate("Privoxy can (and normally does) use a number of other files "
- .. "for additional configuration, help and logging. This section of "
- .. "the configuration file tells Privoxy where to find those other files.") )
-local function err_tab_filter(title, msg)
- return string.format(translate("Files and Directories") .. " - %s: %s", title, msg )
-end
-
-ns:tab("access",
- translate("Access Control"),
- translate("This tab controls the security-relevant aspects of Privoxy's configuration.") )
-local function err_tab_access(title, msg)
- return string.format(translate("Access Control") .. " - %s: %s", title, msg )
-end
-
-ns:tab("forward",
- translate("Forwarding"),
- translate("Configure here the routing of HTTP requests through a chain of multiple proxies. "
- .. "Note that parent proxies can severely decrease your privacy level. "
- .. "Also specified here are SOCKS proxies.") )
-
-ns:tab("misc",
- translate("Miscellaneous"),
- nil)
-local function err_tab_misc(self, msg)
- return string.format(translate("Miscellaneous") .. " - %s: %s", self.title_base, msg )
-end
-
-ns:tab("debug",
- translate("Logging"),
- nil )
-
-ns:tab("logview",
- translate("Log File Viewer"),
- nil )
-
--- tab: local -- ###############################################################
-
--- start/stop button -----------------------------------------------------------
-local btn = ns:taboption("sys", Button, "_startstop")
-btn.title = translate("Start / Stop")
-btn.description = translate("Start/Stop Privoxy WEB Proxy")
-btn.template = "privoxy/detail_startstop"
-function btn.cfgvalue(self, section)
- local pid = CTRL.get_pid(true)
- if pid > 0 then
- btn.inputtitle = "PID: " .. pid
- btn.inputstyle = "reset"
- btn.disabled = false
- else
- btn.inputtitle = translate("Start")
- btn.inputstyle = "apply"
- btn.disabled = false
- end
- return true
-end
-
--- enabled ---------------------------------------------------------------------
-local ena = ns:taboption("sys", Flag, "_enabled")
-ena.title = translate("Enabled")
-ena.description = translate("Enable/Disable autostart of Privoxy on system startup and interface events")
-ena.orientation = "horizontal" -- put description under the checkbox
-ena.rmempty = false
-function ena.cfgvalue(self, section)
- return (SYS.init.enabled("privoxy")) and "1" or "0"
-end
-function ena.write(self, section, value)
- if value == "1" then
- return SYS.init.enable("privoxy")
- else
- return SYS.init.disable("privoxy")
- end
-end
-
--- boot_delay ------------------------------------------------------------------
-local bd = ns:taboption("sys", Value, "boot_delay")
-bd.title = translate("Boot delay")
-bd.description = translate("Delay (in seconds) during system boot before Privoxy start")
- .. [[<br />]]
- .. translate("During delay ifup-events are not monitored !")
-bd.default = "10"
-bd.rmempty = false
--- value is in a separate section so we need to do by hand
-function bd.cfgvalue(self, section)
- local value = tonumber(self.map:get("system", "boot_delay") )
- if not value then return nil end
- return tostring(value)
-end
-function bd.validate(self, value)
- local val = tonumber(value)
- if not val then
- return nil, err_tab_sys(self.title, translate("Value is not a number") )
- elseif val < 0 or val > 300 then
- return nil, err_tab_sys(self.title, translate("Value not between 0 and 300") )
- end
- return value
-end
-function bd.write(self, section, value)
- local fvalue = self:formvalue(section)
- local cvalue = self:cfgvalue(section)
- if (fvalue ~= cvalue) then
- self.map:set("system", "boot_delay", value)
- end
-end
-
--- hostname --------------------------------------------------------------------
-local hn = ns:taboption("doc", Value, "hostname")
-hn.title = string.format(HELP, "HOSTNAME", "Hostname" )
-hn.description = translate("The hostname shown on the CGI pages.")
-hn.placeholder = SYS.hostname()
-hn.optional = true
-hn.rmempty = true
-function hn.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-
--- user-manual -----------------------------------------------------------------
-local um = ns:taboption("doc", Value, "user_manual")
-um.title = string.format(HELP, "USER-MANUAL", "User Manual" )
-um.description = translate("Location of the Privoxy User Manual.")
-um.placeholder = "http://www.privoxy.org/user-manual/"
-um.optional = true
-um.rmempty = true
-function um.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-
--- admin-address ---------------------------------------------------------------
-local aa = ns:taboption("doc", Value, "admin_address")
-aa.title_base = "Admin Email"
-aa.title = string.format(HELP, "ADMIN-ADDRESS", aa.title_base )
-aa.description = translate("An email address to reach the Privoxy administrator.")
-aa.optional = true
-aa.rmempty = true
-function aa.validate(self, value)
- if not value or #value == 0 then
- return ""
- end
- if not (value:match("[A-Za-z0-9%.%%%+%-]+@[A-Za-z0-9%.%%%+%-]+%.%w%w%w?%w?")) then
- return nil, err_tab_doc(self.title_base, translate("Invalid email address") )
- end
- return value
-end
-function aa.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-
--- proxy-info-url --------------------------------------------------------------
-local piu = ns:taboption("doc", Value, "proxy_info_url")
-piu.title = string.format(HELP, "PROXY-INFO-URL", "Proxy Info URL" )
-piu.description = translate("A URL to documentation about the local Privoxy setup, configuration or policies.")
-piu.optional = true
-piu.rmempty = true
-function piu.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-
--- trust-info-url --------------------------------------------------------------
-local tiu = ns:taboption("doc", Value, "trust_info_url")
-tiu.title = string.format(HELP, "TRUST-INFO-URL", "Trust Info URLs" )
-tiu.description = translate("A URL to be displayed in the error page that users will see if access to an untrusted page is denied.")
- .. [[<br /><strong>]]
- .. translate("The value of this option only matters if the experimental trust mechanism has been activated.")
- .. [[</strong>]]
-tiu.optional = true
-tiu.rmepty = true
-function tiu.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-
--- tab: filter -- ##############################################################
-
--- logdir ----------------------------------------------------------------------
-local ld = ns:taboption("filter", Value, "logdir")
-ld.title_base = "Log Directory"
-ld.title = string.format(HELP, "LOGDIR", ld.title_base )
-ld.description = translate("The directory where all logging takes place (i.e. where the logfile is located).")
- .. [[<br />]]
- .. translate("No trailing '/', please.")
-ld.default = "/var/log"
-ld.rmempty = false
-function ld.validate(self, value)
- if not value or #value == 0 then
- return nil, err_tab_filter(self.title_base, translate("Mandatory Input: No Directory given!") )
- elseif not NXFS.access(value) then
- return nil, err_tab_filter(self.title_base, translate("Directory does not exist!") )
- else
- return value
- end
-end
-function ld.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-
--- logfile ---------------------------------------------------------------------
-local lf = ns:taboption("filter", Value, "logfile")
-lf.title_base = "Log File"
-lf.title = string.format(HELP, "LOGFILE", lf.title_base )
-lf.description = translate("The log file to use. File name, relative to log directory.")
-lf.default = "privoxy.log"
-lf.rmempty = false
-function lf.validate(self, value)
- if not value or #value == 0 then
- return nil, err_tab_filter(self.title_base, translate("Mandatory Input: No File given!") )
- else
- return value
- end
-end
-
--- confdir ---------------------------------------------------------------------
-local cd = ns:taboption("filter", Value, "confdir")
-cd.title_base = "Configuration Directory"
-cd.title = string.format(HELP, "CONFDIR", cd.title_base )
-cd.description = translate("The directory where the other configuration files are located.")
- .. [[<br />]]
- .. translate("No trailing '/', please.")
-cd.default = "/etc/privoxy"
-cd.rmempty = false
-function cd.validate(self, value)
- if not value or #value == 0 then
- return nil, err_tab_filter(self.title_base, translate("Mandatory Input: No Directory given!") )
- elseif not NXFS.access(value) then
- return nil, err_tab_filter(self.title_base, translate("Directory does not exist!") )
- else
- return value
- end
-end
-
--- templdir --------------------------------------------------------------------
-local tld = ns:taboption("filter", Value, "templdir")
-tld.title_base = "Template Directory"
-tld.title = string.format(HELP, "TEMPLDIR", tld.title_base )
-tld.description = translate("An alternative directory where the templates are loaded from.")
- .. [[<br />]]
- .. translate("No trailing '/', please.")
-tld.placeholder = "/etc/privoxy/templates"
-tld.rmempty = true
-function tld.validate(self, value)
- if not NXFS.access(value) then
- return nil, err_tab_filter(self.title_base, translate("Directory does not exist!") )
- else
- return value
- end
-end
-
--- temporary-directory ---------------------------------------------------------
-local td = ns:taboption("filter", Value, "temporary_directory")
-td.title_base = "Temporary Directory"
-td.title = string.format(HELP, "TEMPORARY-DIRECTORY", td.title_base )
-td.description = translate("A directory where Privoxy can create temporary files.")
- .. [[<br /><strong>]]
- .. translate("Only when using 'external filters', Privoxy has to create temporary files.")
- .. [[</strong>]]
-td.rmempty = true
-
--- actionsfile -----------------------------------------------------------------
-local af = ns:taboption("filter", DynamicList, "actionsfile")
-af.title_base = "Action Files"
-af.title = string.format(HELP, "ACTIONSFILE", af.title_base)
-af.description = translate("The actions file(s) to use. Multiple actionsfile lines are permitted, and are in fact recommended!")
- .. [[<br /><strong>match-all.action := </strong>]]
- .. translate("Actions that are applied to all sites and maybe overruled later on.")
- .. [[<br /><strong>default.action := </strong>]]
- .. translate("Main actions file")
- .. [[<br /><strong>user.action := </strong>]]
- .. translate("User customizations")
-af.rmempty = false
-function af.validate(self, value)
- if not value or #value == 0 then
- return nil, err_tab_access(self.title_base, translate("Mandatory Input: No files given!") )
- end
- local confdir = cd:formvalue(ns.section)
- local err = false
- local file = ""
- if type(value) == "table" then
- local x
- for _, x in ipairs(value) do
- if x and #x > 0 then
- if not NXFS.access(confdir .."/".. x) then
- err = true
- file = x
- break -- break/leave for on error
- end
- end
- end
- else
- if not NXFS.access(confdir .."/".. value) then
- err = true
- file = value
- end
- end
- if err then
- return nil, string.format(err_tab_filter(self.title_base, translate("File '%s' not found inside Configuration Directory") ), file)
- end
- return value
-end
-
--- filterfile ------------------------------------------------------------------
-local ff = ns:taboption("filter", DynamicList, "filterfile")
-ff.title_base = "Filter files"
-ff.title = string.format(HELP, "FILTERFILE", ff.title_base )
-ff.description = translate("The filter files contain content modification rules that use regular expressions.")
-ff.rmempty = false
-function ff.validate(self, value)
- if not value or #value == 0 then
- return nil, err_tab_access(self.title_base, translate("Mandatory Input: No files given!") )
- end
- local confdir = cd:formvalue(ns.section)
- local err = false
- local file = ""
- if type(value) == "table" then
- local x
- for _, x in ipairs(value) do
- if x and #x > 0 then
- if not NXFS.access(confdir .."/".. x) then
- err = true
- file = x
- break -- break/leave for on error
- end
- end
- end
- else
- if not NXFS.access(confdir .."/".. value) then
- err = true
- file = value
- end
- end
- if err then
- return nil, string.format(err_tab_filter(self.title_base, translate("File '%s' not found inside Configuration Directory") ), file )
- end
- return value
-end
-
--- trustfile -------------------------------------------------------------------
-local tf = ns:taboption("filter", Value, "trustfile")
-tf.title_base = "Trust file"
-tf.title = string.format(HELP, "TRUSTFILE", tf.title_base )
-tf.description = translate("The trust mechanism is an experimental feature for building white-lists "
- .."and should be used with care.")
- .. [[<br /><strong>]]
- .. translate("It is NOT recommended for the casual user.")
- .. [[</strong>]]
-tf.placeholder = "user.trust"
-tf.rmempty = true
-function tf.validate(self, value)
- local confdir = cd:formvalue(ns.section)
- local err = false
- local file = ""
- if type(value) == "table" then
- local x
- for _, x in ipairs(value) do
- if x and #x > 0 then
- if not NCFS.access(confdir .."/".. x) then
- err = true
- file = x
- break -- break/leave for on error
- end
- end
- end
- else
- if not NXFS.access(confdir .."/".. value) then
- err = true
- file = value
- end
- end
- if err then
- return nil, string.format(err_tab_filter(self.title_base, translate("File '%s' not found inside Configuration Directory") ), file )
- end
- return value
-end
-
--- tab: access -- ##############################################################
-
--- listen-address --------------------------------------------------------------
-local la = ns:taboption("access", DynamicList, "listen_address")
-la.title_base = "Listen addresses"
-la.title = string.format(HELP, "LISTEN-ADDRESS", la.title_base )
-la.description = translate("The address and TCP port on which Privoxy will listen for client requests.")
- .. [[<br />]]
- .. translate("Syntax: ")
- .. "IPv4:Port / [IPv6]:Port / Host:Port"
-la.default = "127.0.0.1:8118"
-la.rmempty = false
-function la.validate(self, value)
- if not value or #value == 0 then
- return nil, err_tab_access(self.title_base, translate("Mandatory Input: No Data given!") )
- end
-
- local function check_value(v)
- local _ret = UTIL.split(v, "]:")
- local _ip
- if _ret[2] then -- ip6 with port
- _ip = string.gsub(_ret[1], "%[", "") -- remove "[" at beginning
- if not DTYP.ip6addr(_ip) then
- return translate("Mandatory Input: No valid IPv6 address given!")
- elseif not DTYP.port(_ret[2]) then
- return translate("Mandatory Input: No valid Port given!")
- else
- return nil
- end
- end
- _ret = UTIL.split(v, ":")
- if not _ret[2] then
- return translate("Mandatory Input: No Port given!")
- end
- if #_ret[1] > 0 and not DTYP.host(_ret[1]) then -- :8118 is valid address
- return translate("Mandatory Input: No valid IPv4 address or host given!")
- elseif not DTYP.port(_ret[2]) then
- return translate("Mandatory Input: No valid Port given!")
- else
- return nil
- end
- end
-
- local err = ""
- local entry = ""
- if type(value) == "table" then
- local x
- for _, x in ipairs(value) do
- if x and #x > 0 then
- err = check_value(x)
- if err then
- entry = x
- break
- end
- end
- end
- else
- err = check_value(value)
- entry = value
- end
- if err then
- return nil, string.format(err_tab_access(self.title_base, err .. " - %s"), entry )
- end
- return value
-end
-
--- permit-access ---------------------------------------------------------------
-local pa = ns:taboption("access", DynamicList, "permit_access")
-pa.title = string.format(HELP, "ACLS", "Permit access" )
-pa.description = translate("Who can access what.")
- .. [[<br /><strong>]]
- .. translate("Please read Privoxy manual for details!")
- .. [[</strong>]]
-pa.rmempty = true
-
--- deny-access -----------------------------------------------------------------
-local da = ns:taboption("access", DynamicList, "deny_access")
-da.title = string.format(HELP, "ACLS", "Deny Access" )
-da.description = translate("Who can access what.")
- .. [[<br /><strong>]]
- .. translate("Please read Privoxy manual for details!")
- .. [[</strong>]]
-da.rmempty = true
-
--- buffer-limit ----------------------------------------------------------------
-local bl = ns:taboption("access", Value, "buffer_limit")
-bl.title_base = "Buffer Limit"
-bl.title = string.format(HELP, "BUFFER-LIMIT", bl.title_base )
-bl.description = translate("Maximum size (in KB) of the buffer for content filtering.")
- .. [[<br />]]
- .. translate("Value range 1 to 4096, no entry defaults to 4096")
-bl.default = 4096
-bl.rmempty = true
-function bl.validate(self, value)
- local v = tonumber(value)
- if not v then
- return nil, err_tab_access(self.title_base, translate("Value is not a number") )
- elseif v < 1 or v > 4096 then
- return nil, err_tab_access(self.title_base, translate("Value not between 1 and 4096") )
- elseif v == self.default then
- return "" -- don't need to save default
- end
- return value
-end
-
--- toggle ----------------------------------------------------------------------
-local tgl = ns:taboption("access", Flag, "toggle")
-tgl.title = string.format(HELP, "TOGGLE", "Toggle Status" )
-tgl.description = translate("Enable/Disable filtering when Privoxy starts.")
- .. [[<br />]]
- .. translate("Disabled == Transparent Proxy Mode")
-tgl.orientation = "horizontal"
-tgl.default = "1"
-tgl.rmempty = false
-
--- enable-remote-toggle --------------------------------------------------------
-local ert = ns:taboption("access", Flag, "enable_remote_toggle")
-ert.title = string.format(HELP, "ENABLE-REMOTE-TOGGLE", "Enable remote toggle" )
-ert.description = translate("Whether or not the web-based toggle feature may be used.")
-ert.orientation = "horizontal"
-ert.rmempty = true
-
--- enable-remote-http-toggle ---------------------------------------------------
-local eht = ns:taboption("access", Flag, "enable_remote_http_toggle")
-eht.title = string.format(HELP, "ENABLE-REMOTE-HTTP-TOGGLE", "Enable remote toggle via HTTP" )
-eht.description = translate("Whether or not Privoxy recognizes special HTTP headers to change toggle state.")
- .. [[<br /><strong>]]
- .. translate("This option will be removed in future releases as it has been obsoleted by the more general header taggers.")
- .. [[</strong>]]
-eht.orientation = "horizontal"
-eht.rmempty = true
-
--- enable-edit-actions ---------------------------------------------------------
-local eea = ns:taboption("access", Flag, "enable_edit_actions")
-eea.title = string.format(HELP, "ENABLE-EDIT-ACTIONS", "Enable action file editor" )
-eea.description = translate("Whether or not the web-based actions file editor may be used.")
-eea.orientation = "horizontal"
-eea.rmempty = true
-
--- enforce-blocks --------------------------------------------------------------
-local eb = ns:taboption("access", Flag, "enforce_blocks")
-eb.title = string.format(HELP, "ENFORCE-BLOCKS", "Enforce page blocking" )
-eb.description = translate("If enabled, Privoxy hides the 'go there anyway' link. "
- .. "The user obviously should not be able to bypass any blocks.")
-eb.orientation = "horizontal"
-eb.rmempty = true
-
--- tab: forward -- #############################################################
-
--- enable-proxy-authentication-forwarding --------------------------------------
-local paf = ns:taboption("forward", Flag, "enable_proxy_authentication_forwarding")
-paf.title = string.format(HELP, "ENABLE-PROXY-AUTHENTICATION-FORWARDING",
- translate("Enable proxy authentication forwarding") )
-paf.description = translate("Whether or not proxy authentication through Privoxy should work.")
- .. [[<br /><strong>]]
- .. translate("Enabling this option is NOT recommended if there is no parent proxy that requires authentication!")
- .. [[</strong>]]
---paf.orientation = "horizontal"
-paf.rmempty = true
-
--- forward ---------------------------------------------------------------------
-local fwd = ns:taboption("forward", DynamicList, "forward")
-fwd.title = string.format(HELP, "FORWARD", "Forward HTTP" )
-fwd.description = translate("To which parent HTTP proxy specific requests should be routed.")
- .. [[<br />]]
- .. translate("Syntax: target_pattern http_parent[:port]")
-fwd.rmempty = true
-
--- forward-socks4 --------------------------------------------------------------
-local fs4 = ns:taboption("forward", DynamicList, "forward_socks4")
-fs4.title = string.format(HELP, "SOCKS", "Forward SOCKS 4" )
-fs4.description = translate("Through which SOCKS proxy (and optionally to which parent HTTP proxy) specific requests should be routed.")
- .. [[<br />]]
- .. translate("Syntax:")
- .. " target_pattern socks_proxy[:port] http_parent[:port]"
-fs4.rmempty = true
-
--- forward-socks4a -------------------------------------------------------------
-local f4a = ns:taboption("forward", DynamicList, "forward_socks4a")
-f4a.title = string.format(HELP, "SOCKS", "Forward SOCKS 4A" )
-f4a.description = fs4.description
-f4a.rmempty = true
-
--- forward-socks5 --------------------------------------------------------------
-local fs5 = ns:taboption("forward", DynamicList, "forward_socks5")
-fs5.title = string.format(HELP, "SOCKS", "Forward SOCKS 5" )
-fs5.description = translate("Through which SOCKS proxy (and optionally to which parent HTTP proxy) specific requests should be routed.")
- .. [[<br />]]
- .. translate("Syntax:")
- .. " target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
-fs5.rmempty = true
-
--- forward-socks5t -------------------------------------------------------------
-local f5t = ns:taboption("forward", DynamicList, "forward_socks5t")
-f5t.title = string.format(HELP, "SOCKS", "Forward SOCKS 5t" )
-f5t.description = fs5.description
-f5t.rmempty = true
-
--- tab: misc -- ################################################################
-
--- accept-intercepted-requests -------------------------------------------------
-local air = ns:taboption("misc", Flag, "accept_intercepted_requests")
-air.title = string.format(HELP, "ACCEPT-INTERCEPTED-REQUESTS", "Accept intercepted requests" )
-air.description = translate("Whether intercepted requests should be treated as valid.")
-air.orientation = "horizontal"
-air.rmempty = true
-
--- allow-cgi-request-crunching -------------------------------------------------
-local crc = ns:taboption("misc", Flag, "allow_cgi_request_crunching")
-crc.title = string.format(HELP, "ALLOW-CGI-REQUEST-CRUNCHING", "Allow CGI request crunching" )
-crc.description = translate("Whether requests to Privoxy's CGI pages can be blocked or redirected.")
-crc.orientation = "horizontal"
-crc.rmempty = true
-
--- split-large-forms -----------------------------------------------------------
-local slf = ns:taboption("misc", Flag, "split_large_forms")
-slf.title = string.format(HELP, "SPLIT-LARGE-FORMS", "Split large forms" )
-slf.description = translate("Whether the CGI interface should stay compatible with broken HTTP clients.")
-slf.orientation = "horizontal"
-slf.rmempty = true
-
--- keep-alive-timeout ----------------------------------------------------------
-local kat = ns:taboption("misc", Value, "keep_alive_timeout")
-kat.title_base = "Keep-alive timeout"
-kat.title = string.format(HELP, "KEEP-ALIVE-TIMEOUT", kat.title_base)
-kat.description = translate("Number of seconds after which an open connection will no longer be reused.")
-kat.rmempty = true
-function kat.validate(self, value)
- local v = tonumber(value)
- if not v then
- return nil, err_tab_misc(self.title_base, translate("Value is not a number") )
- elseif v < 1 then
- return nil, err_tab_misc(self.title_base, translate("Value not greater 0 or empty") )
- end
- return value
-end
-
--- tolerate-pipelining ---------------------------------------------------------
-local tp = ns:taboption("misc", Flag, "tolerate_pipelining")
-tp.title = string.format(HELP, "TOLERATE-PIPELINING", "Tolerate pipelining" )
-tp.description = translate("Whether or not pipelined requests should be served.")
-tp.orientation = "horizontal"
-tp.rmempty = true
-
--- default-server-timeout ------------------------------------------------------
-local dst = ns:taboption("misc", Value, "default_server_timeout")
-dst.title_base = "Default server timeout"
-dst.title = string.format(HELP, "DEFAULT-SERVER-TIMEOUT", dst.title_base)
-dst.description = translate("Assumed server-side keep-alive timeout (in seconds) if not specified by the server.")
-dst.rmempty = true
-function dst.validate(self, value)
- local v = tonumber(value)
- if not v then
- return nil, err_tab_misc(self.title_base, translate("Value is not a number") )
- elseif v < 1 then
- return nil, err_tab_misc(self.title_base, translate("Value not greater 0 or empty") )
- end
- return value
-end
-
--- connection-sharing ----------------------------------------------------------
-local cs = ns:taboption("misc", Flag, "connection_sharing")
-cs.title = string.format(HELP, "CONNECTION-SHARING", "Connection sharing" )
-cs.description = translate("Whether or not outgoing connections that have been kept alive should be shared between different incoming connections.")
-cs.orientation = "horizontal"
-cs.rmempty = true
-
--- socket-timeout --------------------------------------------------------------
-local st = ns:taboption("misc", Value, "socket_timeout")
-st.title_base = "Socket timeout"
-st.title = string.format(HELP, "SOCKET-TIMEOUT", st.title_base )
-st.description = translate("Number of seconds after which a socket times out if no data is received.")
-st.default = 300
-st.rmempty = true
-function st.validate(self, value)
- local v = tonumber(value)
- if not v then
- return nil, err_tab_misc(self.title_base, translate("Value is not a number") )
- elseif v < 1 then
- return nil, err_tab_misc(self.title_base, translate("Value not greater 0 or empty") )
- elseif v == self.default then
- return "" -- don't need to save default
- end
- return value
-end
-
--- max-client-connections ------------------------------------------------------
-local mcc = ns:taboption("misc", Value, "max_client_connections")
-mcc.title_base = "Max. client connections"
-mcc.title = string.format(HELP, "MAX-CLIENT-CONNECTIONS", mcc.title_base )
-mcc.description = translate("Maximum number of client connections that will be served.")
-mcc.default = 128
-mcc.rmempty = true
-function mcc.validate(self, value)
- local v = tonumber(value)
- if not v then
- return nil, err_tab_misc(self.title_base, translate("Value is not a number") )
- elseif v < 1 then
- return nil, err_tab_misc(self.title_base, translate("Value not greater 0 or empty") )
- elseif v == self.default then
- return "" -- don't need to save default
- end
- return value
-end
-
--- handle-as-empty-doc-returns-ok ----------------------------------------------
-local her = ns:taboption("misc", Flag, "handle_as_empty_doc_returns_ok")
-her.title = string.format(HELP, "HANDLE-AS-EMPTY-DOC-RETURNS-OK", "Handle as empty doc returns ok" )
-her.description = translate("The status code Privoxy returns for pages blocked with +handle-as-empty-document.")
-her.orientation = "horizontal"
-her.rmempty = true
-
--- enable-compression ----------------------------------------------------------
-local ec = ns:taboption("misc", Flag, "enable_compression")
-ec.title = string.format(HELP, "ENABLE-COMPRESSION", "Enable compression" )
-ec.description = translate("Whether or not buffered content is compressed before delivery.")
-ec.orientation = "horizontal"
-ec.rmempty = true
-
--- compression-level -----------------------------------------------------------
-local cl = ns:taboption("misc", Value, "compression_level")
-cl.title_base = "Compression level"
-cl.title = string.format(HELP, "COMPRESSION-LEVEL", cl.title_base )
-cl.description = translate("The compression level that is passed to the zlib library when compressing buffered content.")
-cl.default = 1
-cl.rmempty = true
-function cl.validate(self, value)
- local v = tonumber(value)
- if not v then
- return nil, err_tab_misc(self.title_base, translate("Value is not a number") )
- elseif v < 0 or v > 9 then
- return nil, err_tab_misc(self.title_base, translate("Value not between 0 and 9") )
- elseif v == self.default then
- return "" -- don't need to save default
- end
- return value
-end
-
--- client-header-order ---------------------------------------------------------
-local cho = ns:taboption("misc", Value, "client_header_order")
-cho.title = string.format(HELP, "CLIENT-HEADER-ORDER", "Client header order" )
-cho.description = translate("The order in which client headers are sorted before forwarding them.")
- .. [[<br />]]
- .. translate("Syntax: Client header names delimited by spaces.")
-cho.rmempty = true
-
--- "debug"-tab definition -- ###################################################
-
--- single-threaded -------------------------------------------------------------
-local st = ns:taboption("debug", Flag, "single_threaded")
-st.title = string.format(HELP, "SINGLE-THREADED", "Single Threaded" )
-st.description = translate("Whether to run only one server thread.")
- .. [[<br /><strong>]]
- .. translate("This option is only there for debugging purposes. It will drastically reduce performance.")
- .. [[</strong>]]
-st.rmempty = true
-
--- debug 1 ---------------------------------------------------------------------
-local d0 = ns:taboption("debug", Flag, "debug_1")
-d0.title = string.format(HELP, "DEBUG", "Debug 1" )
-d0.description = translate("Log the destination for each request Privoxy let through. See also 'Debug 1024'.")
-d0.rmempty = true
-
--- debug 2 ---------------------------------------------------------------------
-local d1 = ns:taboption("debug", Flag, "debug_2")
-d1.title = string.format(HELP, "DEBUG", "Debug 2" )
-d1.description = translate("Show each connection status")
-d1.rmempty = true
-
--- debug 4 ---------------------------------------------------------------------
-local d2 = ns:taboption("debug", Flag, "debug_4")
-d2.title = string.format(HELP, "DEBUG", "Debug 4" )
-d2.description = translate("Show I/O status")
-d2.rmempty = true
-
--- debug 8 ---------------------------------------------------------------------
-local d3 = ns:taboption("debug", Flag, "debug_8")
-d3.title = string.format(HELP, "DEBUG", "Debug 8" )
-d3.description = translate("Show header parsing")
-d3.rmempty = true
-
--- debug 16 --------------------------------------------------------------------
-local d4 = ns:taboption("debug", Flag, "debug_16")
-d4.title = string.format(HELP, "DEBUG", "Debug 16" )
-d4.description = translate("Log all data written to the network")
-d4.rmempty = true
-
--- debug 32 --------------------------------------------------------------------
-local d5 = ns:taboption("debug", Flag, "debug_32")
-d5.title = string.format(HELP, "DEBUG", "Debug 32" )
-d5.description = translate("Debug force feature")
-d5.rmempty = true
-
--- debug 64 --------------------------------------------------------------------
-local d6 = ns:taboption("debug", Flag, "debug_64")
-d6.title = string.format(HELP, "DEBUG", "Debug 64" )
-d6.description = translate("Debug regular expression filters")
-d6.rmempty = true
-
--- debug 128 -------------------------------------------------------------------
-local d7 = ns:taboption("debug", Flag, "debug_128")
-d7.title = string.format(HELP, "DEBUG", "Debug 128" )
-d7.description = translate("Debug redirects")
-d7.rmempty = true
-
--- debug 256 -------------------------------------------------------------------
-local d8 = ns:taboption("debug", Flag, "debug_256")
-d8.title = string.format(HELP, "DEBUG", "Debug 256" )
-d8.description = translate("Debug GIF de-animation")
-d8.rmempty = true
-
--- debug 512 -------------------------------------------------------------------
-local d9 = ns:taboption("debug", Flag, "debug_512")
-d9.title = string.format(HELP, "DEBUG", "Debug 512" )
-d9.description = translate("Common Log Format")
-d9.rmempty = true
-
--- debug 1024 ------------------------------------------------------------------
-local d10 = ns:taboption("debug", Flag, "debug_1024")
-d10.title = string.format(HELP, "DEBUG", "Debug 1024" )
-d10.description = translate("Log the destination for requests Privoxy didn't let through, and the reason why.")
-d10.rmempty = true
-
--- debug 2048 ------------------------------------------------------------------
-local d11 = ns:taboption("debug", Flag, "debug_2048")
-d11.title = string.format(HELP, "DEBUG", "Debug 2048" )
-d11.description = translate("CGI user interface")
-d11.rmempty = true
-
--- debug 4096 ------------------------------------------------------------------
-local d12 = ns:taboption("debug", Flag, "debug_4096")
-d12.title = string.format(HELP, "DEBUG", "Debug 4096" )
-d12.description = translate("Startup banner and warnings.")
-d12.rmempty = true
-
--- debug 8192 ------------------------------------------------------------------
-local d13 = ns:taboption("debug", Flag, "debug_8192")
-d13.title = string.format(HELP, "DEBUG", "Debug 8192" )
-d13.description = translate("Non-fatal errors - *we highly recommended enabling this*")
-d13.rmempty = true
-
--- debug 16384 -----------------------------------------------------------------
---[[ TODO ???
-local d14 = ns:taboption("debug", Flag, "debug_16384")
-d14.title = string.format(HELP, "DEBUG", "Debug 16384" )
-d14.description = translate("")
-d14.rmempty = true
-]]--
-
--- debug 32768 -----------------------------------------------------------------
-local d15 = ns:taboption("debug", Flag, "debug_32768")
-d15.title = string.format(HELP, "DEBUG", "Debug 32768" )
-d15.description = translate("Log all data read from the network")
-d15.rmempty = true
-
--- debug 65536 -----------------------------------------------------------------
-local d16 = ns:taboption("debug", Flag, "debug_65536")
-d16.title = string.format(HELP, "DEBUG", "Debug 65536" )
-d16.description = translate("Log the applying actions")
-d16.rmempty = true
-
--- tab: logview -- #############################################################
-
-local lv = ns:taboption("logview", DummyValue, "_logview")
-lv.template = "privoxy/detail_logview"
-lv.inputtitle = translate("Read / Reread log file")
-lv.rows = 50
-function lv.cfgvalue(self, section)
- local lfile=self.map:get(ns.section, "logdir") .. "/" .. self.map:get(ns.section, "logfile")
- if NXFS.access(lfile) then
- return lfile .. "\n" .. translate("Please press [Read] button")
- end
- return lfile .. "\n" .. translate("File not found or empty")
-end
-
-return m
+++ /dev/null
-
-<!-- ++ BEGIN ++ Privoxy ++ detail_logview.htm ++ -->
-<script>
- function onclick_logview(section, bottom) {
- // get elements
- var txt = document.getElementById("cbid.privoxy.privoxy._logview.txt"); // TextArea
- if ( !txt ) { return; } // security check
- var lvXHR = new XHR();
- lvXHR.get('<%=url('admin/services/privoxy/logview')%>', null,
- function(x) {
- if (x.responseText == "_nodata_")
- txt.value = "<%:File not found or empty%>";
- else
- txt.value = x.responseText;
- if (bottom)
- txt.scrollTop = txt.scrollHeight;
- else
- txt.scrollTop = 0; }
- );
- }
-</script>
-
-<%+cbi/valueheader%>
-
-<br />
-
-<%
--- one button on top, one at the buttom
-%>
-<input class="cbi-button cbi-input-button" style="align: center; width: 100%" type="button" onclick="onclick_logview(this.name, false)"
-<%=
-attr("name", section) .. attr("id", cbid .. ".btn1") .. attr("value", self.inputtitle)
-%> />
-
-<br /><br />
-
-<%
--- set a readable style taken from openwrt theme for textarea#syslog
--- in openwrt theme there are problems with a width of 100 so we check for theme and set to lower value
-%>
-<textarea style="width: <%if media == "/luci-static/openwrt.org" then%>98.7%<%else%>100%<%end%> ; min-height: 500px; border: 3px solid #cccccc; padding: 5px; font-family: monospace; resize: none;" wrap="off" readonly="readonly"
-<%=
-attr("name", cbid .. ".txt") .. attr("id", cbid .. ".txt") .. ifattr(self.rows, "rows")
-%> >
-<%-=pcdata(self:cfgvalue(section))-%>
-</textarea>
-<br /><br />
-
-<%
--- one button on top, one at the buttom
-%>
-<input class="cbi-button cbi-input-button" style="align: center; width: 100%" type="button" onclick="onclick_logview(this.name, true)"
-<%= attr("name", section) .. attr("id", cbid .. ".btn2") .. attr("value", self.inputtitle) %> />
-
-<%+cbi/valuefooter%>
-<!-- ++ END ++ Privoxy ++ detail_logview.htm ++ -->
+++ /dev/null
-
-<!-- ++ BEGIN ++ Privoxy ++ detail_startstop.htm ++ -->
-<script>
-
- // show XHR.poll/XHR.get response on button
- function _data2elements(x) {
- var btn = document.getElementById("cbid.privoxy.privoxy._startstop");
- if ( ! btn ) { return; } // security check
- if (x.responseText == "0") {
- btn.value = "<%:Start%>";
- btn.className = "cbi-button cbi-button-apply";
- btn.disabled = false;
- } else {
- btn.value = "PID: " + x.responseText;
- btn.className = "cbi-button cbi-button-reset";
- btn.disabled = false;
- }
- }
-
- // event handler for start/stop button
- function onclick_startstop(id) {
- // do start/stop
- var btnXHR = new XHR();
- btnXHR.post('<%=url('admin/services/privoxy/startstop')%>', { token: '<%=token%>' },
- function(x) { _data2elements(x); }
- );
- }
-
- XHR.poll(-1, '<%=url('admin/services/privoxy/status')%>', null,
- function(x, data) { _data2elements(x); }
- );
-
-</script>
-
-<%+cbi/valueheader%>
-
-<% if self:cfgvalue(section) ~= false then
--- We need to garantie that function cfgvalue run first to set missing parameters
-%>
- <!-- style="font-size: 100%;" needed for openwrt theme to fix font size -->
- <!-- type="button" onclick="..." enable standard onclick functionalty -->
- <input class="cbi-button cbi-input-<%=self.inputstyle or "button" %>" style="font-size: 100%;" type="button" onclick="onclick_startstop(this.id)"
- <%=
- attr("name", section) .. attr("id", cbid) .. attr("value", self.inputtitle) .. ifattr(self.disabled, "disabled")
- %> />
-<% end %>
-
-<%+cbi/valuefooter%>
-<!-- ++ END ++ Privoxy ++ detail_startstop.htm ++ -->
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2024-07-15 20:49+0000\n"
-"Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsprivoxy/ar/>\n"
-"Language: ar\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
-"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
-"X-Generator: Weblate 5.7-dev\n"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
-msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
-msgid "Access Control"
-msgstr "صلاحية الدخول"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
-msgid "Actions that are applied to all sites and maybe overruled later on."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
-msgid ""
-"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
-"server."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
-msgid "Boot delay"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
-msgid "CGI user interface"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
-msgid "Common Log Format"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
-msgid "Debug GIF de-animation"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
-msgid "Debug force feature"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
-msgid "Debug redirects"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
-msgid "Debug regular expression filters"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
-msgid "Disabled == Transparent Proxy Mode"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
-msgid "Documentation"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
-msgid "Enable proxy authentication forwarding"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
-msgid "Enable/Disable filtering when Privoxy starts."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
-msgid "Enabled"
-msgstr "مفعَّل"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
-msgid ""
-"Enabling this option is NOT recommended if there is no parent proxy that "
-"requires authentication!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
-msgid "Files and Directories"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
-msgid "Forwarding"
-msgstr ""
-
-#: applications/luci-app-privoxy/root/usr/share/rpcd/acl.d/luci-app-privoxy.json:3
-msgid "Grant UCI access for luci-app-privoxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
-msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
-"should not be able to bypass any blocks."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
-msgid ""
-"If you intend to operate Privoxy for more users than just yourself, it might "
-"be a good idea to let them know how to reach you, what you block and why you "
-"do that, your policies, etc."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
-msgid "It is NOT recommended for the casual user."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
-msgid "Location of the Privoxy User Manual."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr "عارض ملف السجل"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
-msgid "Log all data read from the network"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
-msgid "Log all data written to the network"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
-msgid "Log the applying actions"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
-msgid ""
-"Log the destination for each request Privoxy let through. See also 'Debug "
-"1024'."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
-msgid ""
-"Log the destination for requests Privoxy didn't let through, and the reason "
-"why."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr "تسجيل"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
-msgid "Main actions file"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
-msgid "Mandatory Input: No File given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
-msgid "Maximum number of client connections that will be served."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
-msgid "Maximum size (in KB) of the buffer for content filtering."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
-msgid "Non-fatal errors - *we highly recommended enabling this*"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
-msgid ""
-"Number of seconds after which a socket times out if no data is received."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
-msgid ""
-"Number of seconds after which an open connection will no longer be reused."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr "الرجاء الضغط على زر [قراءة]"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
-msgid "Please read Privoxy manual for details!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
-msgid "Privoxy WEB proxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
-msgid ""
-"Privoxy can (and normally does) use a number of other files for additional "
-"configuration, help and logging. This section of the configuration file "
-"tells Privoxy where to find those other files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr "قراءة / إعادة قراءة ملف السجل"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
-msgid "Show I/O status"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
-msgid "Show each connection status"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
-msgid "Show header parsing"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "بداية"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
-msgid "Startup banner and warnings."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
-msgid "Syntax:"
-msgstr "بناء الجملة:"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
-msgid "Syntax: Client header names delimited by spaces."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
-msgid "Syntax: target_pattern http_parent[:port]"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
-msgid "System"
-msgstr "نظام"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
-msgid ""
-"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
-"are in fact recommended!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
-msgid ""
-"The address and TCP port on which Privoxy will listen for client requests."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
-msgid ""
-"The compression level that is passed to the zlib library when compressing "
-"buffered content."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
-msgid ""
-"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
-msgid "The directory where the other configuration files are located."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
-msgid ""
-"The filter files contain content modification rules that use regular "
-"expressions."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
-msgid "The hostname shown on the CGI pages."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
-msgid "The log file to use. File name, relative to log directory."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
-msgid "The order in which client headers are sorted before forwarding them."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
-msgid ""
-"The status code Privoxy returns for pages blocked with +handle-as-empty-"
-"document."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
-msgid ""
-"The trust mechanism is an experimental feature for building white-lists and "
-"should be used with care."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
-msgid ""
-"This option is only there for debugging purposes. It will drastically reduce "
-"performance."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
-msgid ""
-"This option will be removed in future releases as it has been obsoleted by "
-"the more general header taggers."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
-msgid ""
-"This tab controls the security-relevant aspects of Privoxy's configuration."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
-msgid ""
-"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
-"specific requests should be routed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
-msgid "To which parent HTTP proxy specific requests should be routed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
-msgid "User customizations"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
-msgid "Value range 1 to 4096, no entry defaults to 4096"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "الإصدار"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
-msgid "Whether intercepted requests should be treated as valid."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
-msgid ""
-"Whether or not Privoxy recognizes special HTTP headers to change toggle "
-"state."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
-msgid "Whether or not buffered content is compressed before delivery."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
-msgid ""
-"Whether or not outgoing connections that have been kept alive should be "
-"shared between different incoming connections."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
-msgid "Whether or not pipelined requests should be served."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
-msgid "Whether or not proxy authentication through Privoxy should work."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
-msgid "Whether or not the web-based actions file editor may be used."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
-msgid "Whether or not the web-based toggle feature may be used."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
-msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
-msgid ""
-"Whether the CGI interface should stay compatible with broken HTTP clients."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
-msgid "Whether to run only one server thread."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
-msgid "Who can access what."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2025-05-30 02:35+0000\n"
-"\n"
-"Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsprivoxy/bg/>\n"
-"Language: bg\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.12-dev\n"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
-msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
-msgstr ""
-"URL адрес, който да се показва в страницата за грешка, ако бъде отказан "
-"достъп до ненадеждна страница."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
-msgid "Access Control"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
-msgid "Actions that are applied to all sites and maybe overruled later on."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
-msgid ""
-"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
-"server."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
-msgid "Boot delay"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
-msgid "CGI user interface"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
-msgid "Common Log Format"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
-msgid "Debug GIF de-animation"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
-msgid "Debug force feature"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
-msgid "Debug redirects"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
-msgid "Debug regular expression filters"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
-msgid "Disabled == Transparent Proxy Mode"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
-msgid "Documentation"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
-msgid "Enable proxy authentication forwarding"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
-msgid "Enable/Disable filtering when Privoxy starts."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
-msgid "Enabled"
-msgstr "Включено"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
-msgid ""
-"Enabling this option is NOT recommended if there is no parent proxy that "
-"requires authentication!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
-msgid "Files and Directories"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
-msgid "Forwarding"
-msgstr ""
-
-#: applications/luci-app-privoxy/root/usr/share/rpcd/acl.d/luci-app-privoxy.json:3
-msgid "Grant UCI access for luci-app-privoxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
-msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
-"should not be able to bypass any blocks."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
-msgid ""
-"If you intend to operate Privoxy for more users than just yourself, it might "
-"be a good idea to let them know how to reach you, what you block and why you "
-"do that, your policies, etc."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
-msgid "It is NOT recommended for the casual user."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
-msgid "Location of the Privoxy User Manual."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
-msgid "Log all data read from the network"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
-msgid "Log all data written to the network"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
-msgid "Log the applying actions"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
-msgid ""
-"Log the destination for each request Privoxy let through. See also 'Debug "
-"1024'."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
-msgid ""
-"Log the destination for requests Privoxy didn't let through, and the reason "
-"why."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
-msgid "Main actions file"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
-msgid "Mandatory Input: No File given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
-msgid "Maximum number of client connections that will be served."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
-msgid "Maximum size (in KB) of the buffer for content filtering."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
-msgid "Non-fatal errors - *we highly recommended enabling this*"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
-msgid ""
-"Number of seconds after which a socket times out if no data is received."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
-msgid ""
-"Number of seconds after which an open connection will no longer be reused."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
-msgid "Please read Privoxy manual for details!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
-msgid "Privoxy WEB proxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
-msgid ""
-"Privoxy can (and normally does) use a number of other files for additional "
-"configuration, help and logging. This section of the configuration file "
-"tells Privoxy where to find those other files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
-msgid "Show I/O status"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
-msgid "Show each connection status"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
-msgid "Show header parsing"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "Начало"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
-msgid "Startup banner and warnings."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
-msgid "Syntax:"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
-msgid "Syntax: Client header names delimited by spaces."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
-msgid "Syntax: target_pattern http_parent[:port]"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
-msgid "System"
-msgstr "Система"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
-msgid ""
-"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
-"are in fact recommended!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
-msgid ""
-"The address and TCP port on which Privoxy will listen for client requests."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
-msgid ""
-"The compression level that is passed to the zlib library when compressing "
-"buffered content."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
-msgid ""
-"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
-msgid "The directory where the other configuration files are located."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
-msgid ""
-"The filter files contain content modification rules that use regular "
-"expressions."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
-msgid "The hostname shown on the CGI pages."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
-msgid "The log file to use. File name, relative to log directory."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
-msgid "The order in which client headers are sorted before forwarding them."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
-msgid ""
-"The status code Privoxy returns for pages blocked with +handle-as-empty-"
-"document."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
-msgid ""
-"The trust mechanism is an experimental feature for building white-lists and "
-"should be used with care."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
-msgid ""
-"This option is only there for debugging purposes. It will drastically reduce "
-"performance."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
-msgid ""
-"This option will be removed in future releases as it has been obsoleted by "
-"the more general header taggers."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
-msgid ""
-"This tab controls the security-relevant aspects of Privoxy's configuration."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
-msgid ""
-"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
-"specific requests should be routed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
-msgid "To which parent HTTP proxy specific requests should be routed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
-msgid "User customizations"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
-msgid "Value range 1 to 4096, no entry defaults to 4096"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "Версия"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
-msgid "Whether intercepted requests should be treated as valid."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
-msgid ""
-"Whether or not Privoxy recognizes special HTTP headers to change toggle "
-"state."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
-msgid "Whether or not buffered content is compressed before delivery."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
-msgid ""
-"Whether or not outgoing connections that have been kept alive should be "
-"shared between different incoming connections."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
-msgid "Whether or not pipelined requests should be served."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
-msgid "Whether or not proxy authentication through Privoxy should work."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
-msgid "Whether or not the web-based actions file editor may be used."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
-msgid "Whether or not the web-based toggle feature may be used."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
-msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
-msgid ""
-"Whether the CGI interface should stay compatible with broken HTTP clients."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
-msgid "Whether to run only one server thread."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
-msgid "Who can access what."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.9-dev\n"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
+"A directory where Privoxy can create temporary files.<br /><strong>Only when "
+"using 'external filters', Privoxy has to create temporary files.</strong>"
msgstr ""
-"ত্রুটি পৃষ্ঠায় প্রদর্শনের URL যা ব্যবহারকারীরা দেখতে পাবে যদি কোনো অবিশ্বস্ত পৃষ্ঠায় "
-"প্রবেশাধিকার অস্বীকার করা হয়।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
-msgstr "স্থানীয় Privoxy সেটআপ, কনফিগারেশন বা নীতি সম্পর্কে ডকুমেন্টেশনের URL।"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr "Privoxy অস্থায়ী ফাইলের ডিরেক্টরি।"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
+msgid "Accept intercepted requests"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "Access Control"
msgstr "প্রবেশাধিকার নিয়ন্ত্রণ"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
+msgid "Action Files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr "সমস্ত সাইটে প্রযোজ্য এবং পরবর্তীকালে হয়তো অকার্যকর করা হয়েছে এমন অ্যাকশন।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr "বিকল্প ডিরেক্টরি যেখান থেকে টেমপ্লেটগুলি লোড করা হয়।"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
+msgid "Admin Email"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr "Privoxy প্রশাসকের কাছে পৌঁছানোর জন্য ইমেল ঠিকানা।"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
+msgid "Allow CGI request crunching"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
+msgid ""
+"An alternative directory where the templates are loaded from.<br />No "
+"trailing \"/\", please."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
msgstr ""
"সার্ভার দ্বারা নির্ধারিত না হলে অনুমেয় সার্ভার-সাইড কিপ-লাইভ টাইমআউট (সেকেন্ডে)।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay"
msgstr "বুট বিলম্ব"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
+msgid "Buffer Limit"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface"
msgstr "CGI ইউজার ইন্টারফেস"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
+msgid "Client header order"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format"
msgstr "সাধারণ লগ ফরম্যাট"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
+msgid "Compression level"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
+msgid "Configuration Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
+msgid "Configure the Privoxy proxy daemon settings."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
+msgid "Connection sharing"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
+msgid "Debug 1"
msgstr ""
-"একাধিক প্রক্সির চেইনের মাধ্যমে এখানে HTTP অনুরোধের রাউটিং কনফিগার করুন। লক্ষ্য করুন "
-"যে প্যারেন্ট প্রক্সিগুলি আপনার গোপনীয়তার স্তরকে মারাত্মকভাবে হ্রাস করতে পারে। এছাড়াও "
-"এখানে SOCKS প্রক্সি উল্লেখ করুন।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
+msgid "Debug 1024"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
+msgid "Debug 128"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
+msgid "Debug 16"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
+msgid "Debug 2"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
+msgid "Debug 2048"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
+msgid "Debug 256"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
+msgid "Debug 32"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
+msgid "Debug 32768"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
+msgid "Debug 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
+msgid "Debug 4096"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
+msgid "Debug 512"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
+msgid "Debug 64"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
+msgid "Debug 65536"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
+msgid "Debug 8"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
+msgid "Debug 8192"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation"
msgstr "GIF ডি-অ্যানিমেশন ডিবাগ করুন"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature"
msgstr "ফোর্স ফিচার ডিবাগ করুন"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects"
msgstr "রিডাইরেক্ট ডিবাগ করুন"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters"
msgstr "রেগুলার এক্সপ্রেশন ফিল্টার ডিবাগ করুন"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
-msgstr "Privoxy শুরুর আগে সিস্টেম বুট করার সময় বিলম্ব (সেকেন্ডে)"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
+msgid "Default server timeout"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr "ডিরেক্টরি নেই!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
+msgid "Delay (in seconds) during system boot before Privoxy starts."
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
+msgid "Deny access"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode"
msgstr "নিষ্ক্রিয় == স্বচ্ছ প্রক্সি মোড"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "Documentation"
msgstr "ডকুমেন্টেশন"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr "বিলম্বের সময় ifup-events পর্যবেক্ষণ করা হয় না!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
+msgid "Email address for the Privoxy administrator."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
+msgid "Enable action file editor"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
+msgid "Enable compression"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding"
msgstr "প্রক্সি প্রমাণীকরণ ফরওয়ার্ডিং সক্ষম করুন"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
+msgid "Enable remote toggle"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
+msgid "Enable remote toggle via HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
+msgid "Enable/Disable autostart of Privoxy"
msgstr ""
-"সিস্টেম স্টার্টআপ এবং ইন্টারফেস ইভেন্টগুলিতে Privoxy এর অটো স্টার্ট সক্ষম/নিষ্ক্রিয় করুন"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts."
msgstr "Privoxy শুরু হলে ফিল্টারিং সক্ষম/নিষ্ক্রিয় করুন।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled"
msgstr "সক্রিয়"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
"প্রমাণীকরণের প্রয়োজন নেই এমন কোনও প্যারেন্ট প্রক্সি না থাকলে এই অপশনটি সক্রিয় না "
"করাই ভাল!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr "কনফিগারেশন ডিরেক্টরিতে ফাইল '%s' পাওয়া যায়নি"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr "ফাইল পাওয়া যায়নি বা খালি"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
+msgid "Enforce page blocking"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid "Files and Directories"
msgstr "ফাইল এবং ডিরেক্টরি"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr "সাহায্যের জন্য প্রাসঙ্গিক অপশনের লিঙ্ক ব্যবহার করুন"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
+msgid "Filter files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
+msgid "Forward HTTP"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
+msgid "Forward SOCKS 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
+msgid "Forward SOCKS 4A"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
+msgid "Forward SOCKS 5"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
+msgid "Forward SOCKS 5t"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding"
msgstr "ফরওয়ার্ডিং"
msgid "Grant UCI access for luci-app-privoxy"
msgstr "Luci-app-privoxy এর জন্য UCI অ্যাক্সেস প্রদান করুন"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
+msgid "Handle as empty doc returns ok"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+"If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
-"যদি সক্রিয় থাকে, Privoxy 'go there anyway' লিঙ্কটি লুকিয়ে রাখে। ব্যবহারকারীর "
-"স্পষ্টতই কোন ব্লক বাইপাস করতে সক্ষম হওয়া উচিত নয়।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"আপনার কাছে পৌঁছানোর উপায়, আপনি কী ব্লক করেন এবং কেন করেন, আপনার নীতিমালা "
"ইত্যাদি তাদের জানানো উচিৎ।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr "ভুল ইমেইল ঠিকানা"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
msgid "It is NOT recommended for the casual user."
msgstr "নৈমিত্তিক ব্যবহারকারীর জন্য এটি সুপারিশ করা হয় না।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
+msgid "Keep-alive timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
+msgid "Listen addresses"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual."
msgstr "Privoxy ব্যবহারকারী ম্যানুয়ালের অবস্থান।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr "লগ ফাইল ভিউয়ার"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
+msgid "Log Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
+msgid "Log File"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network"
msgstr "নেটওয়ার্ক থেকে পড়া সমস্ত তথ্য লগ করুন"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network"
msgstr "নেটওয়ার্কে লেখা সমস্ত ডেটা লগ করুন"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions"
msgstr "আবেদন কর্ম লগ করুন"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
msgstr "Privoxy যেতে দেয় এমন অনুরোধগুলোর গন্তব্য লগ করুন।এছাড়াও 'ডিবাগ 1024' দেখুন।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
msgstr "Privoxy যেতে দেয়নি এমন অনুরোধগুলোর গন্তব্য এবং কারণ লগ করুন।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr "লগিং"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Main actions file"
msgstr "মূল অ্যাকশন ফাইল"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr "বাধ্যতামূলক ইনপুট: কোনও ডেটা দেওয়া হয়নি!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr "বাধ্যতামূলক ইনপুট: কোনও ডিরেক্টরি দেওয়া হয়নি!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No File given!"
msgstr "বাধ্যতামূলক ইনপুট: কোনও ফাইল দেওয়া হয়নি!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr "বাধ্যতামূলক ইনপুট: কোনও পোর্ট দেওয়া হয়নি!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr "বাধ্যতামূলক ইনপুট: কোনও ফাইল দেওয়া হয়নি!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
-msgstr "বাধ্যতামূলক ইনপুট: কোন বৈধ IPv4 ঠিকানা বা হোস্ট দেওয়া হয়নি!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr "বাধ্যতামূলক ইনপুট: কোন বৈধ IPv6 ঠিকানা দেওয়া হয়নি!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr "বাধ্যতামূলক ইনপুট: কোন বৈধ পোর্ট দেওয়া হয়নি!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
+msgid "Max. client connections"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
msgid "Maximum number of client connections that will be served."
msgstr "সর্বাধিক সংখ্যক ক্লায়েন্ট সংযোগ যা পরিবেশন করা হবে।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr "বিষয়বস্তু ফিল্টার করার জন্য বাফারের সর্বাধিক আকার (KB তে)।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr "বিবিধ"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr "ইনস্টল করা না"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr "দয়া করে শেষের '/' পরিহার করুন।"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
+msgid "Misc"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr "অমারাত্মক ত্রুটি - *আমরা এটি সক্রিয় করার জন্য জোরালো সুপারিশ করেছি *"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
"সেকেন্ডের সংখ্যা যার পরে একটি সকেট টাইম আউট হয়ে যায় যদি কোন ডেটা না পাওয়া যায়।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr "সেকেন্ডের সংখ্যা যার পরে একটি খোলা সংযোগ আর ব্যবহার করা হবে না।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
+msgid "Permit access"
msgstr ""
-"শুধুমাত্র 'বাহ্যিক ফিল্টার' ব্যবহার করার সময় Privoxy-কে অস্থায়ী ফাইল তৈরি করতে হয়।"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr "বর্তমান সংস্করণ ইনস্টল করুন!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr "দয়া করে [পড়ুন] বোতাম টিপুন"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Please read Privoxy manual for details!"
msgstr "বিস্তারিত জানার জন্য দয়া করে Privoxy ম্যানুয়াল পড়ুন!"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr "বর্তমান সংস্করণে আপডেট করুন!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
+msgid "Privoxy"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
+msgid "Privoxy Settings"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
+#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy"
msgstr "Privoxy ওয়েব প্রক্সি"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"পারে (এবং সাধারণত করে)। কনফিগারেশন ফাইলের এই বিভাগটি Privoxy-কে বলে যে "
"অন্যান্য ফাইলগুলি কোথায় পাওয়া যাবে।"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
+msgid "Proxy Info URL"
msgstr ""
-"Privoxy হল একটি নন-ক্যাশিং ওয়েব প্রক্সি যার উন্নত ফিল্টারিং ক্ষমতা গোপনীয়তা বৃদ্ধি, "
-"ওয়েব পেজ ডেটা এবং এইচটিটিপি হেডার পরিবর্তন, অ্যাক্সেস নিয়ন্ত্রণ এবং বিজ্ঞাপন এবং "
-"অন্যান্য অপ্রীতিকর ইন্টারনেট আবর্জনা অপসারণ করে থাকে।"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr "লগ ফাইল পড়ুন / পুনরায় পড়ুন"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Show I/O status"
msgstr "I/O অবস্থা দেখুন"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status"
msgstr "প্রতিটি সংযোগের অবস্থা দেখান"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing"
msgstr "হেডার পার্সিং দেখান"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr "সফটওয়্যার প্যাকেজ '%s' ইনস্টল করা নেই।"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr "সফটওয়্যার প্যাকেজ '%s' পুরনো।"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "শুরু করুন"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
+msgid "Single Threaded"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr "শুরু/শেষ করুন"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
+msgid "Socket timeout"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr "Privoxy ওয়েব প্রক্সি শুরু/বন্ধ করুন"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
+msgid "Split large forms"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Startup banner and warnings."
msgstr "স্টার্টআপ ব্যানার এবং সতর্কতা।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
msgid "Syntax:"
msgstr "সিনট্যাক্স:"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces."
msgstr "সিনট্যাক্স: ক্লায়েন্ট হেডারের নাম স্পেস দ্বারা সীমাবদ্ধ।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
+msgid ""
+"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]"
msgstr "সিনট্যাক্স: target_pattern http_parent [: port]"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
+msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System"
msgstr "সিস্টেম"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
+msgid "Template Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
+msgid "Temporary Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
"ব্যবহার করার জন্য অ্যাকশন ফাইল। একাধিক অ্যাকশন ফাইল লাইন অনুমোদিত, এবং আসলে "
"সুপারিশ করা হয়!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr "ঠিকানা এবং টিসিপি পোর্ট যেখানে Privoxy ক্লায়েন্টের অনুরোধ শুনবে।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
"বাফার করা কন্টেন্ট সংকুচিত করার সময় zlib লাইব্রেরিতে যে কম্প্রেশন লেভেলটি পাঠানো "
"হয়।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
-msgstr "যে ডিরেক্টরিটিতে সমস্ত লগিং হয় (যেমন লগফাইলটি কোথায় অবস্থিত)।"
+"located).<br />No trailing \"/\", please."
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located."
msgstr "যে ডিরেক্টরিতে অন্যান্য কনফিগারেশন ফাইলগুলি অবস্থিত।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
msgstr ""
"ফিল্টার ফাইলগুলিতে কন্টেন্ট পরিবর্তনের নিয়ম রয়েছে যা রেগুলার এক্সপ্রেশন ব্যবহার করে।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages."
msgstr "CGI পৃষ্ঠাগুলিতে প্রদর্শিত হোস্টনেম।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory."
msgstr "ব্যবহার করার জন্য লগ ফাইল। ফাইলের নাম, লগ ডিরেক্টরির ভিত্তিতে।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them."
msgstr "যে ক্রমে ক্লায়েন্ট হেডারগুলি ফরওয়ার্ড করার আগে সাজানো হয়।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
"যে স্ট্যাটাস কোড Privoxy +handle-as-empty-document দ্বারা ব্লক করা পেজের জন্য "
"পাঠায়।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
"ট্রাস্ট মেকানিজম সাদা তালিকা তৈরির জন্য একটি পরীক্ষামূলক বৈশিষ্ট্য এবং এটি যত্ন "
"সহকারে ব্যবহার করা উচিত।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr "পরীক্ষামূলক ট্রাস্ট মেকানিজম সক্রিয় করা হলেই এই অপশনের মান গুরুত্বপূর্ণ।"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
msgstr ""
"এই অপশনটি কেবল ডিবাগিং উদ্দেশ্যেই রয়েছে। এটি কর্মক্ষমতাকে ব্যাপকভাবে হ্রাস করবে।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
"এই অপশনটি ভবিষ্যতের রিলিজগুলিতে সরানো হবে কারণ এটি আরও সাধারণ হেডার ট্যাগারদের "
"দ্বারা অপ্রচলিত হয়ে গেছে।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
"এই ট্যাবটি Privoxy-এর কনফিগারেশনের নিরাপত্তা-প্রাসঙ্গিক দিকগুলি নিয়ন্ত্রণ করে।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
msgstr ""
"যে SOCKS প্রক্সির (এবং সেইসাথে অভিভাবক HTTP প্রক্সি) মাধ্যমে অনুরোধ পাঠানো হবে।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr "যে অভিভাবক HTTP প্রক্সির মাধ্যমে নির্দিষ্ট অনুরোধ পাঠানো হবে।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
+msgid "Toggle Status"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
+msgid "Tolerate pipelining"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
+msgid "Trust Info URL"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
+msgid "Trust file"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
+msgid ""
+"URL shown if access to an untrusted page is denied. Only applies if trust "
+"mechanism is enabled."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
+msgid "URL to documentation about the local Privoxy setup."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
+msgid "User Manual"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
msgid "User customizations"
msgstr "ব্যবহারকারীর কাস্টমাইজেশন"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr "মান কোন সংখ্যা নয়"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr "মান 0 এবং 300 এর মধ্যে নয়"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr "মান 0 এবং 9 এর মধ্যে নয়"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr "মান 1 এবং 4096 এর মধ্যে নয়"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr "মান 0-এর বেশি নয় বা খালি"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr "ভ্যালু রেঞ্জ 1 থেকে 4096, ডিফল্টভাবে কোন এন্ট্রিতে 4096 থাকেনা"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "সংস্করণ"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr "সংস্করণ সংক্রান্ত তথ্য"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
msgid "Whether intercepted requests should be treated as valid."
msgstr "বাধা দেওয়া অনুরোধগুলিকে বৈধ বলে গণ্য করা উচিত কিনা।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
msgstr "Privoxy টগল স্টেট পরিবর্তন করার জন্য বিশেষ HTTP হেডার স্বীকৃতি দেয় কি না।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery."
msgstr "বাফার করা কন্টেন্ট ডেলিভারির আগে সংকুচিত হয় কিনা।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
"বহির্গামী সংযোগগুলি যা জীবিত রাখা হয়েছে তা বিভিন্ন ইনকামিং সংযোগের মধ্যে ভাগ করা "
"উচিত কিনা।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served."
msgstr "পাইপলাইন করা অনুরোধগুলি পরিবেশন করা উচিত কি না।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr "Privoxy এর মাধ্যমে প্রক্সি প্রমাণীকরণ কাজ করবে কি না।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used."
msgstr "ওয়েব-ভিত্তিক অ্যাকশন ফাইল এডিটর ব্যবহার করা যাবে কি না।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used."
msgstr "ওয়েব-ভিত্তিক টগল ফিচার ব্যবহার করা যাবে কি না।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr "Privoxy-এর CGI পেজের অনুরোধগুলি ব্লক করা বা পুননির্দেশিত করা যাবে কিনা।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr "CGI ইন্টারফেসের বিচ্ছিন্ন HTTP ক্লায়েন্টদের সাথে সামঞ্জস্যপূর্ণ থাকা উচিত কিনা।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread."
msgstr "শুধুমাত্র একটি সার্ভার থ্রেড চালানো হবে কিনা।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what."
msgstr "কে কি অ্যাক্সেস করতে পারে।"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr "ইনস্টল করা"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr "বা উচ্চতর"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr "আবশ্যক"
+#~ msgid ""
+#~ "A URL to be displayed in the error page that users will see if access to "
+#~ "an untrusted page is denied."
+#~ msgstr ""
+#~ "ত্রুটি পৃষ্ঠায় প্রদর্শনের URL যা ব্যবহারকারীরা দেখতে পাবে যদি কোনো অবিশ্বস্ত পৃষ্ঠায় "
+#~ "প্রবেশাধিকার অস্বীকার করা হয়।"
+
+#~ msgid ""
+#~ "A URL to documentation about the local Privoxy setup, configuration or "
+#~ "policies."
+#~ msgstr "স্থানীয় Privoxy সেটআপ, কনফিগারেশন বা নীতি সম্পর্কে ডকুমেন্টেশনের URL।"
+
+#~ msgid "A directory where Privoxy can create temporary files."
+#~ msgstr "Privoxy অস্থায়ী ফাইলের ডিরেক্টরি।"
+
+#~ msgid "An alternative directory where the templates are loaded from."
+#~ msgstr "বিকল্প ডিরেক্টরি যেখান থেকে টেমপ্লেটগুলি লোড করা হয়।"
+
+#~ msgid "An email address to reach the Privoxy administrator."
+#~ msgstr "Privoxy প্রশাসকের কাছে পৌঁছানোর জন্য ইমেল ঠিকানা।"
+
+#~ msgid ""
+#~ "Configure here the routing of HTTP requests through a chain of multiple "
+#~ "proxies. Note that parent proxies can severely decrease your privacy "
+#~ "level. Also specified here are SOCKS proxies."
+#~ msgstr ""
+#~ "একাধিক প্রক্সির চেইনের মাধ্যমে এখানে HTTP অনুরোধের রাউটিং কনফিগার করুন। লক্ষ্য "
+#~ "করুন যে প্যারেন্ট প্রক্সিগুলি আপনার গোপনীয়তার স্তরকে মারাত্মকভাবে হ্রাস করতে পারে। "
+#~ "এছাড়াও এখানে SOCKS প্রক্সি উল্লেখ করুন।"
+
+#~ msgid "Delay (in seconds) during system boot before Privoxy start"
+#~ msgstr "Privoxy শুরুর আগে সিস্টেম বুট করার সময় বিলম্ব (সেকেন্ডে)"
+
+#~ msgid "Directory does not exist!"
+#~ msgstr "ডিরেক্টরি নেই!"
+
+#~ msgid "During delay ifup-events are not monitored !"
+#~ msgstr "বিলম্বের সময় ifup-events পর্যবেক্ষণ করা হয় না!"
+
+#~ msgid ""
+#~ "Enable/Disable autostart of Privoxy on system startup and interface events"
+#~ msgstr ""
+#~ "সিস্টেম স্টার্টআপ এবং ইন্টারফেস ইভেন্টগুলিতে Privoxy এর অটো স্টার্ট সক্ষম/নিষ্ক্রিয় "
+#~ "করুন"
+
+#~ msgid "File '%s' not found inside Configuration Directory"
+#~ msgstr "কনফিগারেশন ডিরেক্টরিতে ফাইল '%s' পাওয়া যায়নি"
+
+#~ msgid "File not found or empty"
+#~ msgstr "ফাইল পাওয়া যায়নি বা খালি"
+
+#~ msgid "For help use link at the relevant option"
+#~ msgstr "সাহায্যের জন্য প্রাসঙ্গিক অপশনের লিঙ্ক ব্যবহার করুন"
+
+#~ msgid ""
+#~ "If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+#~ "should not be able to bypass any blocks."
+#~ msgstr ""
+#~ "যদি সক্রিয় থাকে, Privoxy 'go there anyway' লিঙ্কটি লুকিয়ে রাখে। ব্যবহারকারীর "
+#~ "স্পষ্টতই কোন ব্লক বাইপাস করতে সক্ষম হওয়া উচিত নয়।"
+
+#~ msgid "Invalid email address"
+#~ msgstr "ভুল ইমেইল ঠিকানা"
+
+#~ msgid "Log File Viewer"
+#~ msgstr "লগ ফাইল ভিউয়ার"
+
+#~ msgid "Logging"
+#~ msgstr "লগিং"
+
+#~ msgid "Mandatory Input: No Data given!"
+#~ msgstr "বাধ্যতামূলক ইনপুট: কোনও ডেটা দেওয়া হয়নি!"
+
+#~ msgid "Mandatory Input: No Directory given!"
+#~ msgstr "বাধ্যতামূলক ইনপুট: কোনও ডিরেক্টরি দেওয়া হয়নি!"
+
+#~ msgid "Mandatory Input: No Port given!"
+#~ msgstr "বাধ্যতামূলক ইনপুট: কোনও পোর্ট দেওয়া হয়নি!"
+
+#~ msgid "Mandatory Input: No files given!"
+#~ msgstr "বাধ্যতামূলক ইনপুট: কোনও ফাইল দেওয়া হয়নি!"
+
+#~ msgid "Mandatory Input: No valid IPv4 address or host given!"
+#~ msgstr "বাধ্যতামূলক ইনপুট: কোন বৈধ IPv4 ঠিকানা বা হোস্ট দেওয়া হয়নি!"
+
+#~ msgid "Mandatory Input: No valid IPv6 address given!"
+#~ msgstr "বাধ্যতামূলক ইনপুট: কোন বৈধ IPv6 ঠিকানা দেওয়া হয়নি!"
+
+#~ msgid "Mandatory Input: No valid Port given!"
+#~ msgstr "বাধ্যতামূলক ইনপুট: কোন বৈধ পোর্ট দেওয়া হয়নি!"
+
+#~ msgid "Miscellaneous"
+#~ msgstr "বিবিধ"
+
+#~ msgid "NOT installed"
+#~ msgstr "ইনস্টল করা না"
+
+#~ msgid "No trailing '/', please."
+#~ msgstr "দয়া করে শেষের '/' পরিহার করুন।"
+
+#~ msgid ""
+#~ "Only when using 'external filters', Privoxy has to create temporary files."
+#~ msgstr ""
+#~ "শুধুমাত্র 'বাহ্যিক ফিল্টার' ব্যবহার করার সময় Privoxy-কে অস্থায়ী ফাইল তৈরি করতে "
+#~ "হয়।"
+
+#~ msgid "Please install current version !"
+#~ msgstr "বর্তমান সংস্করণ ইনস্টল করুন!"
+
+#~ msgid "Please press [Read] button"
+#~ msgstr "দয়া করে [পড়ুন] বোতাম টিপুন"
+
+#~ msgid "Please update to the current version!"
+#~ msgstr "বর্তমান সংস্করণে আপডেট করুন!"
+
+#~ msgid ""
+#~ "Privoxy is a non-caching web proxy with advanced filtering capabilities "
+#~ "for enhancing privacy, modifying web page data and HTTP headers, "
+#~ "controlling access, and removing ads and other obnoxious Internet junk."
+#~ msgstr ""
+#~ "Privoxy হল একটি নন-ক্যাশিং ওয়েব প্রক্সি যার উন্নত ফিল্টারিং ক্ষমতা গোপনীয়তা "
+#~ "বৃদ্ধি, ওয়েব পেজ ডেটা এবং এইচটিটিপি হেডার পরিবর্তন, অ্যাক্সেস নিয়ন্ত্রণ এবং "
+#~ "বিজ্ঞাপন এবং অন্যান্য অপ্রীতিকর ইন্টারনেট আবর্জনা অপসারণ করে থাকে।"
+
+#~ msgid "Read / Reread log file"
+#~ msgstr "লগ ফাইল পড়ুন / পুনরায় পড়ুন"
+
+#~ msgid "Software package '%s' is not installed."
+#~ msgstr "সফটওয়্যার প্যাকেজ '%s' ইনস্টল করা নেই।"
+
+#~ msgid "Software package '%s' is outdated."
+#~ msgstr "সফটওয়্যার প্যাকেজ '%s' পুরনো।"
+
+#~ msgid "Start"
+#~ msgstr "শুরু করুন"
+
+#~ msgid "Start / Stop"
+#~ msgstr "শুরু/শেষ করুন"
+
+#~ msgid "Start/Stop Privoxy WEB Proxy"
+#~ msgstr "Privoxy ওয়েব প্রক্সি শুরু/বন্ধ করুন"
+
+#~ msgid ""
+#~ "The directory where all logging takes place (i.e. where the logfile is "
+#~ "located)."
+#~ msgstr "যে ডিরেক্টরিটিতে সমস্ত লগিং হয় (যেমন লগফাইলটি কোথায় অবস্থিত)।"
+
+#~ msgid ""
+#~ "The value of this option only matters if the experimental trust mechanism "
+#~ "has been activated."
+#~ msgstr "পরীক্ষামূলক ট্রাস্ট মেকানিজম সক্রিয় করা হলেই এই অপশনের মান গুরুত্বপূর্ণ।"
+
+#~ msgid "Value is not a number"
+#~ msgstr "মান কোন সংখ্যা নয়"
+
+#~ msgid "Value not between 0 and 300"
+#~ msgstr "মান 0 এবং 300 এর মধ্যে নয়"
+
+#~ msgid "Value not between 0 and 9"
+#~ msgstr "মান 0 এবং 9 এর মধ্যে নয়"
+
+#~ msgid "Value not between 1 and 4096"
+#~ msgstr "মান 1 এবং 4096 এর মধ্যে নয়"
+
+#~ msgid "Value not greater 0 or empty"
+#~ msgstr "মান 0-এর বেশি নয় বা খালি"
+
+#~ msgid "Version"
+#~ msgstr "সংস্করণ"
+
+#~ msgid "Version Information"
+#~ msgstr "সংস্করণ সংক্রান্ত তথ্য"
+
+#~ msgid "installed"
+#~ msgstr "ইনস্টল করা"
+
+#~ msgid "or higher"
+#~ msgstr "বা উচ্চতর"
+
+#~ msgid "required"
+#~ msgstr "আবশ্যক"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2024-03-18 11:11+0000\n"
-"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsprivoxy/ca/>\n"
-"Language: ca\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.5-dev\n"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
-msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
-msgid "Access Control"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
-msgid "Actions that are applied to all sites and maybe overruled later on."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
-msgid ""
-"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
-"server."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
-msgid "Boot delay"
-msgstr "Retard d'arrencada"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
-msgid "CGI user interface"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
-msgid "Common Log Format"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
-msgid "Debug GIF de-animation"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
-msgid "Debug force feature"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
-msgid "Debug redirects"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
-msgid "Debug regular expression filters"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
-msgid "Disabled == Transparent Proxy Mode"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
-msgid "Documentation"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
-msgid "Enable proxy authentication forwarding"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
-msgid "Enable/Disable filtering when Privoxy starts."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
-msgid "Enabled"
-msgstr "Activat"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
-msgid ""
-"Enabling this option is NOT recommended if there is no parent proxy that "
-"requires authentication!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
-msgid "Files and Directories"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
-msgid "Forwarding"
-msgstr ""
-
-#: applications/luci-app-privoxy/root/usr/share/rpcd/acl.d/luci-app-privoxy.json:3
-msgid "Grant UCI access for luci-app-privoxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
-msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
-"should not be able to bypass any blocks."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
-msgid ""
-"If you intend to operate Privoxy for more users than just yourself, it might "
-"be a good idea to let them know how to reach you, what you block and why you "
-"do that, your policies, etc."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
-msgid "It is NOT recommended for the casual user."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
-msgid "Location of the Privoxy User Manual."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
-msgid "Log all data read from the network"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
-msgid "Log all data written to the network"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
-msgid "Log the applying actions"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
-msgid ""
-"Log the destination for each request Privoxy let through. See also 'Debug "
-"1024'."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
-msgid ""
-"Log the destination for requests Privoxy didn't let through, and the reason "
-"why."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
-msgid "Main actions file"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
-msgid "Mandatory Input: No File given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
-msgid "Maximum number of client connections that will be served."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
-msgid "Maximum size (in KB) of the buffer for content filtering."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
-msgid "Non-fatal errors - *we highly recommended enabling this*"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
-msgid ""
-"Number of seconds after which a socket times out if no data is received."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
-msgid ""
-"Number of seconds after which an open connection will no longer be reused."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
-msgid "Please read Privoxy manual for details!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
-msgid "Privoxy WEB proxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
-msgid ""
-"Privoxy can (and normally does) use a number of other files for additional "
-"configuration, help and logging. This section of the configuration file "
-"tells Privoxy where to find those other files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
-msgid "Show I/O status"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
-msgid "Show each connection status"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
-msgid "Show header parsing"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
-msgid "Startup banner and warnings."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
-msgid "Syntax:"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
-msgid "Syntax: Client header names delimited by spaces."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
-msgid "Syntax: target_pattern http_parent[:port]"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
-msgid "System"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
-msgid ""
-"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
-"are in fact recommended!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
-msgid ""
-"The address and TCP port on which Privoxy will listen for client requests."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
-msgid ""
-"The compression level that is passed to the zlib library when compressing "
-"buffered content."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
-msgid ""
-"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
-msgid "The directory where the other configuration files are located."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
-msgid ""
-"The filter files contain content modification rules that use regular "
-"expressions."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
-msgid "The hostname shown on the CGI pages."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
-msgid "The log file to use. File name, relative to log directory."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
-msgid "The order in which client headers are sorted before forwarding them."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
-msgid ""
-"The status code Privoxy returns for pages blocked with +handle-as-empty-"
-"document."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
-msgid ""
-"The trust mechanism is an experimental feature for building white-lists and "
-"should be used with care."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
-msgid ""
-"This option is only there for debugging purposes. It will drastically reduce "
-"performance."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
-msgid ""
-"This option will be removed in future releases as it has been obsoleted by "
-"the more general header taggers."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
-msgid ""
-"This tab controls the security-relevant aspects of Privoxy's configuration."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
-msgid ""
-"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
-"specific requests should be routed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
-msgid "To which parent HTTP proxy specific requests should be routed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
-msgid "User customizations"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
-msgid "Value range 1 to 4096, no entry defaults to 4096"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
-msgid "Whether intercepted requests should be treated as valid."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
-msgid ""
-"Whether or not Privoxy recognizes special HTTP headers to change toggle "
-"state."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
-msgid "Whether or not buffered content is compressed before delivery."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
-msgid ""
-"Whether or not outgoing connections that have been kept alive should be "
-"shared between different incoming connections."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
-msgid "Whether or not pipelined requests should be served."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
-msgid "Whether or not proxy authentication through Privoxy should work."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
-msgid "Whether or not the web-based actions file editor may be used."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
-msgid "Whether or not the web-based toggle feature may be used."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
-msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
-msgid ""
-"Whether the CGI interface should stay compatible with broken HTTP clients."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
-msgid "Whether to run only one server thread."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
-msgid "Who can access what."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr ""
"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n"
"X-Generator: Weblate 5.12-dev\n"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
+"A directory where Privoxy can create temporary files.<br /><strong>Only when "
+"using 'external filters', Privoxy has to create temporary files.</strong>"
msgstr ""
-"Adresa URL, která se zobrazí na chybové stránce, kterou uživatelé uvidí, "
-"pokud je přístup na nedůvěryhodnou stránku odepřen."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
+msgid "Accept intercepted requests"
msgstr ""
-"Adresa URL dokumentace místního nastavení Privoxy, konfigurace a politik."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr "Složka, kde může Privoxy vytvářet dočasné soubory."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "Access Control"
msgstr "Řízení přístupu"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
+msgid "Action Files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
"Akce, které jsou aplikovány na všechny stránky, a které mohou být přepsány "
"později."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr "Alternativní adresář, ze kterého jsou načítany šablony."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
+msgid "Admin Email"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr "E-mailová adresa správce Privoxy."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
+msgid "Allow CGI request crunching"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
+msgid ""
+"An alternative directory where the templates are loaded from.<br />No "
+"trailing \"/\", please."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
"Předpokládaný limit pro udržení spojení v sekundách na straně serveru, pokud "
"není určen serverem."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay"
msgstr "Zpoždění bootu"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
+msgid "Buffer Limit"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface"
msgstr "Uživatelské rozhraní CGI"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
+msgid "Client header order"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format"
msgstr "Společný formát protokolu"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
+msgid "Compression level"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
+msgid "Configuration Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
+msgid "Configure the Privoxy proxy daemon settings."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
+msgid "Connection sharing"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
+msgid "Debug 1"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
+msgid "Debug 1024"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
+msgid "Debug 128"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
+msgid "Debug 16"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
+msgid "Debug 2"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
+msgid "Debug 2048"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
+msgid "Debug 256"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
+msgid "Debug 32"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
+msgid "Debug 32768"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
+msgid "Debug 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
+msgid "Debug 4096"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
+msgid "Debug 512"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
+msgid "Debug 64"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
+msgid "Debug 65536"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
+msgid "Debug 8"
msgstr ""
-"Zde nastavte směrování HTTP požadavků řetězem proxy serverů. Nadřazené proxy "
-"servery mohou výrazně snížit úroveň soukromí. Zde také můžete zadat SOCKS "
-"proxy servery."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
+msgid "Debug 8192"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation"
msgstr "Protokolovat GIF de-animace"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature"
msgstr "Protokolovat 'force' vlastnosti"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects"
msgstr "Zaznamenávat ladící informace o přesměrování"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters"
msgstr ""
"Zapisovat ladící informace pro filtry regulárních výrazů do záznamu událostí"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
-msgstr "Prodleva v sekundách při bootování systému před spuštěním Privoxy"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
+msgid "Default server timeout"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr "Složka neexistuje!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
+msgid "Delay (in seconds) during system boot before Privoxy starts."
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
+msgid "Deny access"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode"
msgstr "Zakázáno = = transparentní režim proxy serveru"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "Documentation"
msgstr "Dokumentace"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr "Během prodlení nejsou monitorovány události zapnutí rozhraní!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
+msgid "Email address for the Privoxy administrator."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
+msgid "Enable action file editor"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
+msgid "Enable compression"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding"
msgstr "Povolit předávání autentizace proxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
+msgid "Enable remote toggle"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
+msgid "Enable remote toggle via HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
+msgid "Enable/Disable autostart of Privoxy"
msgstr ""
-"Povolit / zakázat automatické spuštění Privoxy po spuštění systému a při "
-"událostech rozhraní"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts."
msgstr "Povolit / zakázat filtrování při spuštění privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled"
msgstr "Povoleno"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
"Povolení této možnosti NENÍ doporučeno, pokud neexistuje nadřazený proxy "
"server vyžadující ověření!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr "Soubor „%s“ nenalezen ve složce nastavení"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr "Soubor nenalezen nebo je prázdný"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
+msgid "Enforce page blocking"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid "Files and Directories"
msgstr "Soubory a složky"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr "Pro nápovědu použijte odkaz u příslušné možnosti"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
+msgid "Filter files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
+msgid "Forward HTTP"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
+msgid "Forward SOCKS 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
+msgid "Forward SOCKS 4A"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
+msgid "Forward SOCKS 5"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
+msgid "Forward SOCKS 5t"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding"
msgstr "Přesměrování"
msgid "Grant UCI access for luci-app-privoxy"
msgstr "Udělit luci-app-privoxy přístup do UCI nastavování"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
+msgid "Handle as empty doc returns ok"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+"If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
-"Je-li povoleno, Privoxy skryje odkaz 'Přesto pokračovat'. Uživatel by "
-"samozřejmě neměl být schopen obejít žádné blokování."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"vhodné jim oznámit, jak vás mohou kontaktovat, co blokujete a proč, vaše "
"zásady atd."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr "Neplatná e-mailová adresa"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
msgid "It is NOT recommended for the casual user."
msgstr "NENÍ doporučeno pro příležitostné uživatele."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
+msgid "Keep-alive timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
+msgid "Listen addresses"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual."
msgstr "Umístění uživatelského manuálu Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr "Prohlížeč souborů protokolu"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
+msgid "Log Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
+msgid "Log File"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network"
msgstr "Zaznamenávat všechna data příchozí ze sítě"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network"
msgstr "Zaznamenávat všechna data odchozí do sítě"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions"
msgstr "Zapisovat uplatňované akce do záznamu událostí"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
"Protokolovat cíl každého požadavku, který Privoxy propustí. Vizte také "
"'Debug 1024'."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
msgstr "Protokolovat cíl každého požadavku, který Privoxy nepropustí, a důvod."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr "Zaznamenávání událostí"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Main actions file"
msgstr "Soubor hlavních akcí"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr "Povinný vstup: Nebyly zadány žádné údaje!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr "Povinný vstup: Nebyl zadán žádný adresář!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No File given!"
msgstr "Povinný vstup: Nebyl zadán žádný soubor!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr "Povinný vstup: Není zadán žádný port!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr "Povinný vstup: Nebyly zadány žádné soubory!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
-msgstr "Povinný vstup: Nebyla zadána žádná platná IPv4 adresa nebo hostitel!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr "Povinný vstup: Nebyla zadána žádná platná IPv6 adresa!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr "Povinný vstup: Nezadán žádný platný port!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
+msgid "Max. client connections"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
msgid "Maximum number of client connections that will be served."
msgstr "Maximální počet klientských spojení, které budou obsluhovány."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr "Maximální velikost vyrovnávací paměti v kB pro filtrování obsahu."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr "Různé"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr "NENÍ nainstalováno"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr "Nedávejte na konec „/“."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
+msgid "Misc"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr "Nezávažné chyby -*důrazně doporučujeme toto povolit*"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
"Počet sekund, po kterých vyprší časový limit, pokud nejsou přijata žádná "
"data."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr "Počet sekund, po kterých již nebude otevřené připojení znovu použito."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
+msgid "Permit access"
msgstr ""
-"Pouze při použití 'externích filtrů' musí Privoxy vytvářet dočasné soubory."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr "Nainstalujte aktuální verzi!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr "Stiskněte tlačítko [Načíst]"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Please read Privoxy manual for details!"
msgstr "Podrobnosti se dočtete v manuálové stránce k Privoxy!"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr "Aktualizujte na současnou verzi!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
+msgid "Privoxy"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
+msgid "Privoxy Settings"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
+#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy"
msgstr "Webová proxy Privoxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"konfiguraci, nápovědu a protokolování. Tato část konfiguračního souboru říká "
"Privoxy, kde tyto další soubory najít."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
+msgid "Proxy Info URL"
msgstr ""
-"Privoxy je webová proxy bez mezipaměti s pokročilými filtrovacími funkcemi "
-"pro zvýšení ochrany soukromí, upravující data webových stánek a HTTP "
-"hlaviček, řídící přístup a odebírající reklamy a ostatní otravné internetové "
-"smetí."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr "Načíst / znovu načíst soubor záznamu událostí"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Show I/O status"
msgstr "Zobrazit stav vstupu/výstupu"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status"
msgstr "Zobrazit stav každého připojení"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing"
msgstr "Zobrazit analýzu hlavičky"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr "Softwarový balíček „%s“ není nainstalován."
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr "Softwarový balíček „%s“ je zastaralý."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "Spustit"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
+msgid "Single Threaded"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr "Spustit / zastavit"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
+msgid "Socket timeout"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr "Spustit / zastavit Privoxy"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
+msgid "Split large forms"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Startup banner and warnings."
msgstr "Úvodní nápis a upozornění."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
msgid "Syntax:"
msgstr "Syntaxe:"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces."
msgstr "Syntaxe: Názvy hlaviček klienta odděleny mezerami."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
+msgid ""
+"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]"
msgstr "Syntaxe: target_pattern http_parent[:port]"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
+msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System"
msgstr "Systém"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
+msgid "Template Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
+msgid "Temporary Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
"Soubor(y) akcí, které se mají použít. Je povoleno více řádků, což je ostatně "
"doporučeno!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
"Adresa a port TCP, na kterém bude Privoxy naslouchat požadavkům klientů."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
"Úroveň komprese, která je předána do knihovny ZLIB při kompresi obsahu "
"vyrovnávací paměti."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
+"located).<br />No trailing \"/\", please."
msgstr ""
-"Adresář, ve kterém se provádí všechna protokolování (tj. kde je umístěn "
-"soubor protokolu)."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located."
msgstr "Adresář, ve kterém jsou umístěny ostatní konfigurační soubory."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
"Soubory filtrů obsahují pravidla pro úpravu obsahu, která používají "
"regulární výrazy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages."
msgstr "Název hostitele zobrazený na stránkách CGI."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory."
msgstr ""
"Soubor protokolu, který má být použit. Název souboru relativní k adresáři "
"protokolu."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
"Pořadí, ve kterém jsou tříděny hlavičky klientů před jejich přeposláním."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
"Stavový kód, který Privoxy vrací pro stránky blokované filtrem +handle-as-"
"empty-document."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
"Mechanismus důvěryhodnosti je experimentální funkce pro vytváření whitelistů "
"a měl by být používán s opatrností."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-"Hodnota této možnosti je důležitá pouze v případě, že byl aktivován "
-"experimentální mechanismus důvěryhodnosti."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
msgstr ""
"Tato možnost je k dispozici pouze pro účely ladění. Výrazně sníží výkon."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
"Tato možnost bude v budoucích verzích odstraněna, protože byla nahrazena "
"obecnějšími značkovači záhlaví."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr "Tato záložka řídí bezpečnostní aspekty konfigurace Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
"Prostřednictvím které SOCKS proxy (a případně na kterou nadřazenou HTTP "
"proxy) by měly být konkrétní požadavky směrovány."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr ""
"Prostřednictvím které nadřazené HTTP proxy by měly být konkrétní požadavky "
"směrovány."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
+msgid "Toggle Status"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
+msgid "Tolerate pipelining"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
+msgid "Trust Info URL"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
+msgid "Trust file"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
+msgid ""
+"URL shown if access to an untrusted page is denied. Only applies if trust "
+"mechanism is enabled."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
+msgid "URL to documentation about the local Privoxy setup."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
+msgid "User Manual"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
msgid "User customizations"
msgstr "Uživatelské úpravy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr "Hodnota není číslo"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr "Hodnota není v rozsahu 0 až 300"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr "Hodnota není v rozmezí 0 až 9"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr "Hodnota není v rozmezí 1 až 4096"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr "Hodnota není větší než 0, nebo je prázdná"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr "Rozsah hodnot 1 až 4096, žádná hodnota znamená 4096"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "Verze"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr "Informace o verzi"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
msgid "Whether intercepted requests should be treated as valid."
msgstr "Zda mají být zachycené požadavky považovány za platné."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
msgstr "Zda má Privoxy rozpoznávat speciální HTTP hlavičky pro změnu stavu."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery."
msgstr "Zda je vyrovnávací obsah komprimován před doručením."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
"Zda mají být odchozí spojení, která byla zachována, sdílena mezi různými "
"příchozími spojeními."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served."
msgstr "Zda odbavovat zařazené (pipelined) požadavky."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr ""
"Zda má nebo nemá být funkční proxy autentizace prostřednictvím Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used."
msgstr "Zda lze použít webový editor pro úpravu souborů akcí."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used."
msgstr "Zda může být použita webová přepínací funkce."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
"Zda mohou být požadavky na CGI stránky v Privoxy blokovány nebo přesměrovány."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr "Zda má rozhraní CGI zůstat kompatibilní s rozbitými HTTP klienty."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread."
msgstr "Zda má být spuštěno pouze jedno serverové vlákno."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what."
msgstr "Kdo má přístup k čemu."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr "nainstalováno"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr "nebo vyšší"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr "vyžadováno"
+#~ msgid ""
+#~ "A URL to be displayed in the error page that users will see if access to "
+#~ "an untrusted page is denied."
+#~ msgstr ""
+#~ "Adresa URL, která se zobrazí na chybové stránce, kterou uživatelé uvidí, "
+#~ "pokud je přístup na nedůvěryhodnou stránku odepřen."
+
+#~ msgid ""
+#~ "A URL to documentation about the local Privoxy setup, configuration or "
+#~ "policies."
+#~ msgstr ""
+#~ "Adresa URL dokumentace místního nastavení Privoxy, konfigurace a politik."
+
+#~ msgid "A directory where Privoxy can create temporary files."
+#~ msgstr "Složka, kde může Privoxy vytvářet dočasné soubory."
+
+#~ msgid "An alternative directory where the templates are loaded from."
+#~ msgstr "Alternativní adresář, ze kterého jsou načítany šablony."
+
+#~ msgid "An email address to reach the Privoxy administrator."
+#~ msgstr "E-mailová adresa správce Privoxy."
+
+#~ msgid ""
+#~ "Configure here the routing of HTTP requests through a chain of multiple "
+#~ "proxies. Note that parent proxies can severely decrease your privacy "
+#~ "level. Also specified here are SOCKS proxies."
+#~ msgstr ""
+#~ "Zde nastavte směrování HTTP požadavků řetězem proxy serverů. Nadřazené "
+#~ "proxy servery mohou výrazně snížit úroveň soukromí. Zde také můžete zadat "
+#~ "SOCKS proxy servery."
+
+#~ msgid "Delay (in seconds) during system boot before Privoxy start"
+#~ msgstr "Prodleva v sekundách při bootování systému před spuštěním Privoxy"
+
+#~ msgid "Directory does not exist!"
+#~ msgstr "Složka neexistuje!"
+
+#~ msgid "During delay ifup-events are not monitored !"
+#~ msgstr "Během prodlení nejsou monitorovány události zapnutí rozhraní!"
+
+#~ msgid ""
+#~ "Enable/Disable autostart of Privoxy on system startup and interface events"
+#~ msgstr ""
+#~ "Povolit / zakázat automatické spuštění Privoxy po spuštění systému a při "
+#~ "událostech rozhraní"
+
+#~ msgid "File '%s' not found inside Configuration Directory"
+#~ msgstr "Soubor „%s“ nenalezen ve složce nastavení"
+
+#~ msgid "File not found or empty"
+#~ msgstr "Soubor nenalezen nebo je prázdný"
+
+#~ msgid "For help use link at the relevant option"
+#~ msgstr "Pro nápovědu použijte odkaz u příslušné možnosti"
+
+#~ msgid ""
+#~ "If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+#~ "should not be able to bypass any blocks."
+#~ msgstr ""
+#~ "Je-li povoleno, Privoxy skryje odkaz 'Přesto pokračovat'. Uživatel by "
+#~ "samozřejmě neměl být schopen obejít žádné blokování."
+
+#~ msgid "Invalid email address"
+#~ msgstr "Neplatná e-mailová adresa"
+
+#~ msgid "Log File Viewer"
+#~ msgstr "Prohlížeč souborů protokolu"
+
+#~ msgid "Logging"
+#~ msgstr "Zaznamenávání událostí"
+
+#~ msgid "Mandatory Input: No Data given!"
+#~ msgstr "Povinný vstup: Nebyly zadány žádné údaje!"
+
+#~ msgid "Mandatory Input: No Directory given!"
+#~ msgstr "Povinný vstup: Nebyl zadán žádný adresář!"
+
+#~ msgid "Mandatory Input: No Port given!"
+#~ msgstr "Povinný vstup: Není zadán žádný port!"
+
+#~ msgid "Mandatory Input: No files given!"
+#~ msgstr "Povinný vstup: Nebyly zadány žádné soubory!"
+
+#~ msgid "Mandatory Input: No valid IPv4 address or host given!"
+#~ msgstr ""
+#~ "Povinný vstup: Nebyla zadána žádná platná IPv4 adresa nebo hostitel!"
+
+#~ msgid "Mandatory Input: No valid IPv6 address given!"
+#~ msgstr "Povinný vstup: Nebyla zadána žádná platná IPv6 adresa!"
+
+#~ msgid "Mandatory Input: No valid Port given!"
+#~ msgstr "Povinný vstup: Nezadán žádný platný port!"
+
+#~ msgid "Miscellaneous"
+#~ msgstr "Různé"
+
+#~ msgid "NOT installed"
+#~ msgstr "NENÍ nainstalováno"
+
+#~ msgid "No trailing '/', please."
+#~ msgstr "Nedávejte na konec „/“."
+
+#~ msgid ""
+#~ "Only when using 'external filters', Privoxy has to create temporary files."
+#~ msgstr ""
+#~ "Pouze při použití 'externích filtrů' musí Privoxy vytvářet dočasné "
+#~ "soubory."
+
+#~ msgid "Please install current version !"
+#~ msgstr "Nainstalujte aktuální verzi!"
+
+#~ msgid "Please press [Read] button"
+#~ msgstr "Stiskněte tlačítko [Načíst]"
+
+#~ msgid "Please update to the current version!"
+#~ msgstr "Aktualizujte na současnou verzi!"
+
+#~ msgid ""
+#~ "Privoxy is a non-caching web proxy with advanced filtering capabilities "
+#~ "for enhancing privacy, modifying web page data and HTTP headers, "
+#~ "controlling access, and removing ads and other obnoxious Internet junk."
+#~ msgstr ""
+#~ "Privoxy je webová proxy bez mezipaměti s pokročilými filtrovacími "
+#~ "funkcemi pro zvýšení ochrany soukromí, upravující data webových stánek a "
+#~ "HTTP hlaviček, řídící přístup a odebírající reklamy a ostatní otravné "
+#~ "internetové smetí."
+
+#~ msgid "Read / Reread log file"
+#~ msgstr "Načíst / znovu načíst soubor záznamu událostí"
+
+#~ msgid "Software package '%s' is not installed."
+#~ msgstr "Softwarový balíček „%s“ není nainstalován."
+
+#~ msgid "Software package '%s' is outdated."
+#~ msgstr "Softwarový balíček „%s“ je zastaralý."
+
+#~ msgid "Start"
+#~ msgstr "Spustit"
+
+#~ msgid "Start / Stop"
+#~ msgstr "Spustit / zastavit"
+
+#~ msgid "Start/Stop Privoxy WEB Proxy"
+#~ msgstr "Spustit / zastavit Privoxy"
+
+#~ msgid ""
+#~ "The directory where all logging takes place (i.e. where the logfile is "
+#~ "located)."
+#~ msgstr ""
+#~ "Adresář, ve kterém se provádí všechna protokolování (tj. kde je umístěn "
+#~ "soubor protokolu)."
+
+#~ msgid ""
+#~ "The value of this option only matters if the experimental trust mechanism "
+#~ "has been activated."
+#~ msgstr ""
+#~ "Hodnota této možnosti je důležitá pouze v případě, že byl aktivován "
+#~ "experimentální mechanismus důvěryhodnosti."
+
+#~ msgid "Value is not a number"
+#~ msgstr "Hodnota není číslo"
+
+#~ msgid "Value not between 0 and 300"
+#~ msgstr "Hodnota není v rozsahu 0 až 300"
+
+#~ msgid "Value not between 0 and 9"
+#~ msgstr "Hodnota není v rozmezí 0 až 9"
+
+#~ msgid "Value not between 1 and 4096"
+#~ msgstr "Hodnota není v rozmezí 1 až 4096"
+
+#~ msgid "Value not greater 0 or empty"
+#~ msgstr "Hodnota není větší než 0, nebo je prázdná"
+
+#~ msgid "Version"
+#~ msgstr "Verze"
+
+#~ msgid "Version Information"
+#~ msgstr "Informace o verzi"
+
+#~ msgid "installed"
+#~ msgstr "nainstalováno"
+
+#~ msgid "or higher"
+#~ msgstr "nebo vyšší"
+
+#~ msgid "required"
+#~ msgstr "vyžadováno"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2024-01-25 02:53+0000\n"
-"Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsprivoxy/da/>\n"
-"Language: da\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.4-dev\n"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
-msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
-msgstr ""
-"En URL-adresse, der skal vises på den fejlside, som brugerne får vist, hvis "
-"adgangen til en side, der ikke er tillid til, nægtes."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
-msgid "Access Control"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
-msgid "Actions that are applied to all sites and maybe overruled later on."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
-msgid ""
-"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
-"server."
-msgstr ""
-"Antaget server-side holde i live timeout (i sekunder), hvis den ikke er "
-"angivet af serveren."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
-msgid "Boot delay"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
-msgid "CGI user interface"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
-msgid "Common Log Format"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
-msgid "Debug GIF de-animation"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
-msgid "Debug force feature"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
-msgid "Debug redirects"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
-msgid "Debug regular expression filters"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
-msgid "Disabled == Transparent Proxy Mode"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
-msgid "Documentation"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
-msgid "Enable proxy authentication forwarding"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
-msgid "Enable/Disable filtering when Privoxy starts."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
-msgid "Enabled"
-msgstr "Aktiveret"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
-msgid ""
-"Enabling this option is NOT recommended if there is no parent proxy that "
-"requires authentication!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
-msgid "Files and Directories"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
-msgid "Forwarding"
-msgstr ""
-
-#: applications/luci-app-privoxy/root/usr/share/rpcd/acl.d/luci-app-privoxy.json:3
-msgid "Grant UCI access for luci-app-privoxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
-msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
-"should not be able to bypass any blocks."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
-msgid ""
-"If you intend to operate Privoxy for more users than just yourself, it might "
-"be a good idea to let them know how to reach you, what you block and why you "
-"do that, your policies, etc."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
-msgid "It is NOT recommended for the casual user."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
-msgid "Location of the Privoxy User Manual."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
-msgid "Log all data read from the network"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
-msgid "Log all data written to the network"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
-msgid "Log the applying actions"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
-msgid ""
-"Log the destination for each request Privoxy let through. See also 'Debug "
-"1024'."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
-msgid ""
-"Log the destination for requests Privoxy didn't let through, and the reason "
-"why."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr "Logning"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
-msgid "Main actions file"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
-msgid "Mandatory Input: No File given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
-msgid "Maximum number of client connections that will be served."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
-msgid "Maximum size (in KB) of the buffer for content filtering."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr "Diverse"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
-msgid "Non-fatal errors - *we highly recommended enabling this*"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
-msgid ""
-"Number of seconds after which a socket times out if no data is received."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
-msgid ""
-"Number of seconds after which an open connection will no longer be reused."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
-msgid "Please read Privoxy manual for details!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
-msgid "Privoxy WEB proxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
-msgid ""
-"Privoxy can (and normally does) use a number of other files for additional "
-"configuration, help and logging. This section of the configuration file "
-"tells Privoxy where to find those other files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
-msgid "Show I/O status"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
-msgid "Show each connection status"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
-msgid "Show header parsing"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "Start"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
-msgid "Startup banner and warnings."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
-msgid "Syntax:"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
-msgid "Syntax: Client header names delimited by spaces."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
-msgid "Syntax: target_pattern http_parent[:port]"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
-msgid "System"
-msgstr "System"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
-msgid ""
-"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
-"are in fact recommended!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
-msgid ""
-"The address and TCP port on which Privoxy will listen for client requests."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
-msgid ""
-"The compression level that is passed to the zlib library when compressing "
-"buffered content."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
-msgid ""
-"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
-msgid "The directory where the other configuration files are located."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
-msgid ""
-"The filter files contain content modification rules that use regular "
-"expressions."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
-msgid "The hostname shown on the CGI pages."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
-msgid "The log file to use. File name, relative to log directory."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
-msgid "The order in which client headers are sorted before forwarding them."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
-msgid ""
-"The status code Privoxy returns for pages blocked with +handle-as-empty-"
-"document."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
-msgid ""
-"The trust mechanism is an experimental feature for building white-lists and "
-"should be used with care."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
-msgid ""
-"This option is only there for debugging purposes. It will drastically reduce "
-"performance."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
-msgid ""
-"This option will be removed in future releases as it has been obsoleted by "
-"the more general header taggers."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
-msgid ""
-"This tab controls the security-relevant aspects of Privoxy's configuration."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
-msgid ""
-"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
-"specific requests should be routed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
-msgid "To which parent HTTP proxy specific requests should be routed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
-msgid "User customizations"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
-msgid "Value range 1 to 4096, no entry defaults to 4096"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "Version"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
-msgid "Whether intercepted requests should be treated as valid."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
-msgid ""
-"Whether or not Privoxy recognizes special HTTP headers to change toggle "
-"state."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
-msgid "Whether or not buffered content is compressed before delivery."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
-msgid ""
-"Whether or not outgoing connections that have been kept alive should be "
-"shared between different incoming connections."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
-msgid "Whether or not pipelined requests should be served."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
-msgid "Whether or not proxy authentication through Privoxy should work."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
-msgid "Whether or not the web-based actions file editor may be used."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
-msgid "Whether or not the web-based toggle feature may be used."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
-msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
-msgid ""
-"Whether the CGI interface should stay compatible with broken HTTP clients."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
-msgid "Whether to run only one server thread."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
-msgid "Who can access what."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr ""
"X-Generator: Weblate 5.12-dev\n"
"X-Poedit-SourceCharset: UTF-8\n"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
+"A directory where Privoxy can create temporary files.<br /><strong>Only when "
+"using 'external filters', Privoxy has to create temporary files.</strong>"
msgstr ""
-"Ein Link auf der Fehlerseite, der Benutzern angezeigt wird, wenn der Zugang "
-"zu einer nicht vertrauenswürdigen Seite verweigert wird."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
+msgid "Accept intercepted requests"
msgstr ""
-"Ein Link zur Dokumentation über die lokale Privoxy Konfiguration und die "
-"Sicherheitseinstellungen."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr "Ein Verzeichnis, in dem Privoxy temporäre Dateien erstellen kann."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "Access Control"
msgstr "Zugriffskontrolle"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
+msgid "Action Files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
"Aktionen, die für alle Websites angewendet werden, und vielleicht später "
"überschrieben werden."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr "Eine alternatives Verzeichnis, aus dem die Vorlagen geladen werden."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
+msgid "Admin Email"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
+msgid "Allow CGI request crunching"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr "Eine E-Mail-Adresse, um die Privoxy-Administrator zu erreichen."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
+msgid ""
+"An alternative directory where the templates are loaded from.<br />No "
+"trailing \"/\", please."
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
"Angenommenes serverseitiges Keep-Alive-Timeout (in Sekunden), falls nicht "
"vom Server festgelegt."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay"
msgstr "Systemstart-Verzögerung"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
+msgid "Buffer Limit"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface"
msgstr "Protokolliert die CGI Benutzer Schnittstelle"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
+msgid "Client header order"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format"
msgstr "Gemeinsames Protokollformat"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
+msgid "Compression level"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
+msgid "Configuration Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
+msgid "Configure the Privoxy proxy daemon settings."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
+msgid "Connection sharing"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
+msgid "Debug 1"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
+msgid "Debug 1024"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
+msgid "Debug 128"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
+msgid "Debug 16"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
+msgid "Debug 2"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
+msgid "Debug 2048"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
+msgid "Debug 256"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
+msgid "Debug 32"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
+msgid "Debug 32768"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
+msgid "Debug 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
+msgid "Debug 4096"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
+msgid "Debug 512"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
+msgid "Debug 64"
msgstr ""
-"Konfigurieren Sie hier das Weiterleiten von HTTP-Anforderungen durch eine "
-"Kette von mehreren Proxies. Beachten Sie, dass übergeordnete Proxies Ihre "
-"Privatsphäre stark einschränken können. Auch hier angegeben werden SOCKS-"
-"Proxies."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
+msgid "Debug 65536"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
+msgid "Debug 8"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
+msgid "Debug 8192"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation"
msgstr "Protokolliert die GIF de-animation"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature"
msgstr "Protokolliert die 'Force' Eigenschaft"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects"
msgstr "Protokolliert Weiterleitungen"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters"
msgstr "Protokolliert Filter für reguläre Ausdrücke"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
+msgid "Default server timeout"
msgstr ""
-"Verzögerung (in Sekunden) während des Systemstarts vor dem Start von Privoxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr "Verzeichnis existiert nicht!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
+msgid "Delay (in seconds) during system boot before Privoxy starts."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
+msgid "Deny access"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode"
msgstr "Deaktiviert == Transparent Proxy Betrieb"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "Documentation"
msgstr "Dokumentation"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr "Während der Verzögerung werden 'ifup'-Ereignisse nicht überwacht!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
+msgid "Email address for the Privoxy administrator."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
+msgid "Enable action file editor"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
+msgid "Enable compression"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding"
msgstr "Aktivieren die Weiterleitung von Proxy-Authentifizierungen"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
+msgid "Enable remote toggle"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
+msgid "Enable remote toggle via HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
+msgid "Enable/Disable autostart of Privoxy"
msgstr ""
-"Aktivieren / Deaktivieren des Autostart von Privoxy beim Systemstart und "
-"Schnittstellenereignissen"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts."
msgstr "Aktivieren / Deaktivieren der Filterung, wenn Privoxy startet."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled"
msgstr "Aktiviert"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
"Die Aktivierung dieser Option wird NICHT empfohlen, wenn es keinen "
"übergeordneten Proxy gibt, der eine Authentifizierung erfordert!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr "Datei '%s' nicht im Konfigurationsverzeichnis gefunden"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr "Datei nicht gefunden oder leer"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
+msgid "Enforce page blocking"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid "Files and Directories"
msgstr "Dateien und Verzeichnisse"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
+msgid "Filter files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
+msgid "Forward HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
+msgid "Forward SOCKS 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
+msgid "Forward SOCKS 4A"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
+msgid "Forward SOCKS 5"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
+msgid "Forward SOCKS 5t"
msgstr ""
-"Für Hilfe zur Verwendung, benutzen Sie die Verknüpfung der betreffenden "
-"Option"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding"
msgstr "Weiterleitung"
msgid "Grant UCI access for luci-app-privoxy"
msgstr "UCI-Zugriff für luci-app-privoxy erlauben"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
+msgid "Handle as empty doc returns ok"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+"If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
-"Wenn aktiviert, verbirgt Privoxy den Link 'go there anyway'. Normalerweise "
-"sollten Benutzer nicht in der Lage sein, Blockierungen zu umgehen."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"betreiben, ist es eine gute Idee, sie wissen zu lassen, wie sie Sie "
"erreichen können, was Sie blockieren und warum Sie das tun, etc."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr "Ungültige Email Adresse"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
msgid "It is NOT recommended for the casual user."
msgstr "Es wird NICHT für den gelegentlichen Anwender empfohlen."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
+msgid "Keep-alive timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
+msgid "Listen addresses"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual."
msgstr "Ort des Privoxy Benutzer Handbuches."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr "Protokolldateibetrachter"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
+msgid "Log Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
+msgid "Log File"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network"
msgstr "Protokolliert alle Daten, die vom Netzwerk gelesen werden"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network"
msgstr "Protokolliert alle Daten, die auf das Netzwerk geschrieben werden"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions"
msgstr "Protokolliert angewendete Aktionen"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
"Protokolliert das Ziel für jede Anforderung die Privoxy durchlässt. Siehe "
"auch 'Debug 1024'."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
"Protokolliert das Ziel für Anfragen die Privoxy nicht durchgelassen hat, und "
"den Grund dafür."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr "Protokollierung"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Main actions file"
msgstr "Wichtige Aktionen-Datei"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr "Pflichtfeld: Keine Daten angegeben!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr "Pflichtfeld: Kein Verzeichnis angegeben!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No File given!"
msgstr "Pflichtfeld: Keine Datei angegeben!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr "Pflichtfeld: Kein Port angegeben!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr "Pflichtfeld: Keine Dateien angegeben!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
+msgid "Max. client connections"
msgstr ""
-"Pflichtfeld: Keine gültige IPv4 Adresse oder gültiger Hostname angegeben!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr "Pflichtfeld: Keine gültige IPv6 Adresse angegeben!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr "Pflichtfeld: Keine gültige Port Nummer angegeben!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
msgid "Maximum number of client connections that will be served."
msgstr "Maximale Anzahl von Client-Verbindungen."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr "Maximale Größe (in KB) des Puffers für die Inhaltsfilterung."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr "Verschiedenes"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr "NICHT installiert"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr "Bitte kein '/' am Ende."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
+msgid "Misc"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr ""
"Protokolliert nicht schwerwiegende Fehler - * Es wird dringend empfohlen, "
"dieses zu aktivieren *"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
"Anzahl der Sekunden, nach der eine Socket Timeout erfolgt, wenn keine Daten "
"empfangen werden."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
"Anzahl von Sekunden, nach der eine offene Verbindung nicht mehr "
"wiederverwendet wird."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
+msgid "Permit access"
msgstr ""
-"Nur bei Verwendung von 'externen Filtern' muss Privoxy temporäre Dateien "
-"erstellen."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr "Installieren Sie bitte die aktuelle Version!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr "Bitte Protokolldatei einlesen"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Please read Privoxy manual for details!"
msgstr "Bitte lesen Sie das Privoxy Handbuch für Details!"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr "Aktualisieren Sie bitte auf die aktuelle Version!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
+msgid "Privoxy"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
+msgid "Privoxy Settings"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
+#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy"
msgstr "Privoxy WEB-Proxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"Abschnitt der Konfigurationsdatei teilt Privoxy mit, wo diese Dateien zu "
"finden sind."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
+msgid "Proxy Info URL"
msgstr ""
-"Privoxy ist ein non-caching Web-Proxy mit erweiterten Filterfunktion zur "
-"Verbesserung der Privatsphäre. Er modifiziert Webseitendaten und HTTP-"
-"Header, kontrolliert den Zugang und das Entfernen von Anzeigen und anderem "
-"abscheulichen Internet Schrott."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr "Protokolldatei (neu) einlesen"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Show I/O status"
msgstr "Protokolliert den I/O Status"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status"
msgstr "Protokolliert jeden Verbindungsstatus"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing"
msgstr "Protokolliert das 'Header parsing'"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr "Software Paket '%s' ist nicht installiert."
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr "Software Paket '%s' ist nicht aktuell."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "Start"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
+msgid "Single Threaded"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr "Start / Stopp"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
+msgid "Socket timeout"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr "Start/Stopp Privoxy WEB Proxy"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
+msgid "Split large forms"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Startup banner and warnings."
msgstr "Protokolliert Start-Meldungen und Warnungen."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
msgid "Syntax:"
msgstr "Syntax:"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces."
msgstr "Syntax: Client header Namen getrennt durch Leerzeichen."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
+msgid ""
+"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]"
msgstr "Syntax: target_pattern http_parent[:port]"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
+msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System"
msgstr "System"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
+msgid "Template Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
+msgid "Temporary Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
"Die zu verwendenden Aktion-Datei(en). Mehrere Dateien sind gestattet und "
"empfohlen!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
"Die Adresse und das TCP-Port, auf dem Privoxy auf Client-Anforderungen "
"wartet."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
"Die Komprimierungsstufe (0-9), die der zlib-Bibliothek beim Komprimieren "
"gepufferten Inhaltes übergeben wird."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
-msgstr "Das Verzeichnis in dem die Protokolldatei gespeichert wird."
+"located).<br />No trailing \"/\", please."
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located."
msgstr "Das Verzeichnis in dem weitere Konfigurationsdateien gespeichert sind."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
"Die Filterdateien enthalten Regeln zur Änderung des Inhalts, die reguläre "
"Ausdrücke verwenden."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages."
msgstr "Der Hostname der auf CGI-Seiten angezeigt wird."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory."
msgstr ""
"Zu verwendende Protokolldatei. Dateiname relativ zum Protokoll-Verzeichnis."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
"Die Reihenfolge, in der Client-Header sortiert werden, bevor sie "
"weitergeleitet werden."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
"Ob Statuscode 200(OK) oder 403(forbidden) für Seiten gemeldet wird, die "
"durch den Filter 'handle-as-empty-document' blockiert werden."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
"Der Trust-Mechanismus ist eine experimentelle Funktion für den Aufbau von "
"White-Listen und sollte mit Vorsicht verwendet werden."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-"Der Wert dieser Option ist nur wirksam, wenn der experimentelle Trust-"
-"Mechanismus aktiviert wurde."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
"Diese Option ist ausschließlich zur Fehlersuche. Es wird drastisch die "
"Leistung beeinträchtigt."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
msgstr "Diese Option wird in zukünftigen Versionen entfernt werden."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
"Diese Registerkarte steuert die sicherheitsrelevanten Aspekte der Privoxy "
"Konfiguration."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
"An welchen SOCKS-Proxy (und gegebenenfalls an welchen übergeordneten HTTP-"
"Proxy) spezifischen Anforderungen weitergeleitet werden."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr ""
"An welchen übergeordneten HTTP-Proxy spezifischen Anforderungen "
"weitergeleitet werden."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
+msgid "Toggle Status"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
+msgid "Tolerate pipelining"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
+msgid "Trust Info URL"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
+msgid "Trust file"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
+msgid ""
+"URL shown if access to an untrusted page is denied. Only applies if trust "
+"mechanism is enabled."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
+msgid "URL to documentation about the local Privoxy setup."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
+msgid "User Manual"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
msgid "User customizations"
msgstr "Benutzerdefinierte Anpassungen"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr "Wert ist keine Zahl"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr "Wert nicht zwischen 0 und 300"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr "Wert nicht zwischen 0 und 9"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr "Wert nicht zwischen 1 und 4096"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr "Wert nicht größer 0 oder leer"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr "Wertebereich: 1 bis 4096; Keine Angabe setzt 4096"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "Version"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr "Versionsinformationen"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
msgid "Whether intercepted requests should be treated as valid."
msgstr "Ob abgefangen Anfragen als gültig behandelt werden."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
"Ob Privoxy erkannte spezielle HTTP-Header zur Änderung des Toggle-Status "
"verwendet.."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery."
msgstr ""
"Ob gepufferte Inhalte vor der Weiterleitung komprimiert werden oder nicht."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
"Ob ausgehende Verbindungen, die am Leben gehalten werden, für verschiedenen "
"eingehenden Verbindungen gemeinsam genutzt werden oder nicht."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served."
msgstr "Ob Pipeline-Anfragen bedient werden oder nicht."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr ""
"Ob Proxy-Authentifizierungen durch Privoxy weitergeleitet werden oder nicht."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used."
msgstr "De-/Aktiviert den webbasierte Action-Datei Editor."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used."
msgstr "De-Aktiviert die webbasierte Umschaltfunktion."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
"Ob Anfragen an Privoxy CGI-Seiten gesperrt oder umgeleitet werden können "
"oder nicht."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
"Ob die CGI-Schnittstelle mit broken HTTP-Clients kompatibel bleibt oder "
"nicht."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread."
msgstr "Ob nur ein Server-Thread ausgeführt wird."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what."
msgstr "Wer kann auf Was zugreifen."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr "installiert"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr "oder höher"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr "erforderlich"
+#~ msgid ""
+#~ "A URL to be displayed in the error page that users will see if access to "
+#~ "an untrusted page is denied."
+#~ msgstr ""
+#~ "Ein Link auf der Fehlerseite, der Benutzern angezeigt wird, wenn der "
+#~ "Zugang zu einer nicht vertrauenswürdigen Seite verweigert wird."
+
+#~ msgid ""
+#~ "A URL to documentation about the local Privoxy setup, configuration or "
+#~ "policies."
+#~ msgstr ""
+#~ "Ein Link zur Dokumentation über die lokale Privoxy Konfiguration und die "
+#~ "Sicherheitseinstellungen."
+
+#~ msgid "A directory where Privoxy can create temporary files."
+#~ msgstr "Ein Verzeichnis, in dem Privoxy temporäre Dateien erstellen kann."
+
+#~ msgid "An alternative directory where the templates are loaded from."
+#~ msgstr "Eine alternatives Verzeichnis, aus dem die Vorlagen geladen werden."
+
+#~ msgid "An email address to reach the Privoxy administrator."
+#~ msgstr "Eine E-Mail-Adresse, um die Privoxy-Administrator zu erreichen."
+
+#~ msgid ""
+#~ "Configure here the routing of HTTP requests through a chain of multiple "
+#~ "proxies. Note that parent proxies can severely decrease your privacy "
+#~ "level. Also specified here are SOCKS proxies."
+#~ msgstr ""
+#~ "Konfigurieren Sie hier das Weiterleiten von HTTP-Anforderungen durch eine "
+#~ "Kette von mehreren Proxies. Beachten Sie, dass übergeordnete Proxies Ihre "
+#~ "Privatsphäre stark einschränken können. Auch hier angegeben werden SOCKS-"
+#~ "Proxies."
+
+#~ msgid "Delay (in seconds) during system boot before Privoxy start"
+#~ msgstr ""
+#~ "Verzögerung (in Sekunden) während des Systemstarts vor dem Start von "
+#~ "Privoxy"
+
+#~ msgid "Directory does not exist!"
+#~ msgstr "Verzeichnis existiert nicht!"
+
+#~ msgid "During delay ifup-events are not monitored !"
+#~ msgstr "Während der Verzögerung werden 'ifup'-Ereignisse nicht überwacht!"
+
+#~ msgid ""
+#~ "Enable/Disable autostart of Privoxy on system startup and interface events"
+#~ msgstr ""
+#~ "Aktivieren / Deaktivieren des Autostart von Privoxy beim Systemstart und "
+#~ "Schnittstellenereignissen"
+
+#~ msgid "File '%s' not found inside Configuration Directory"
+#~ msgstr "Datei '%s' nicht im Konfigurationsverzeichnis gefunden"
+
+#~ msgid "File not found or empty"
+#~ msgstr "Datei nicht gefunden oder leer"
+
+#~ msgid "For help use link at the relevant option"
+#~ msgstr ""
+#~ "Für Hilfe zur Verwendung, benutzen Sie die Verknüpfung der betreffenden "
+#~ "Option"
+
+#~ msgid ""
+#~ "If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+#~ "should not be able to bypass any blocks."
+#~ msgstr ""
+#~ "Wenn aktiviert, verbirgt Privoxy den Link 'go there anyway'. "
+#~ "Normalerweise sollten Benutzer nicht in der Lage sein, Blockierungen zu "
+#~ "umgehen."
+
+#~ msgid "Invalid email address"
+#~ msgstr "Ungültige Email Adresse"
+
+#~ msgid "Log File Viewer"
+#~ msgstr "Protokolldateibetrachter"
+
+#~ msgid "Logging"
+#~ msgstr "Protokollierung"
+
+#~ msgid "Mandatory Input: No Data given!"
+#~ msgstr "Pflichtfeld: Keine Daten angegeben!"
+
+#~ msgid "Mandatory Input: No Directory given!"
+#~ msgstr "Pflichtfeld: Kein Verzeichnis angegeben!"
+
+#~ msgid "Mandatory Input: No Port given!"
+#~ msgstr "Pflichtfeld: Kein Port angegeben!"
+
+#~ msgid "Mandatory Input: No files given!"
+#~ msgstr "Pflichtfeld: Keine Dateien angegeben!"
+
+#~ msgid "Mandatory Input: No valid IPv4 address or host given!"
+#~ msgstr ""
+#~ "Pflichtfeld: Keine gültige IPv4 Adresse oder gültiger Hostname angegeben!"
+
+#~ msgid "Mandatory Input: No valid IPv6 address given!"
+#~ msgstr "Pflichtfeld: Keine gültige IPv6 Adresse angegeben!"
+
+#~ msgid "Mandatory Input: No valid Port given!"
+#~ msgstr "Pflichtfeld: Keine gültige Port Nummer angegeben!"
+
+#~ msgid "Miscellaneous"
+#~ msgstr "Verschiedenes"
+
+#~ msgid "NOT installed"
+#~ msgstr "NICHT installiert"
+
+#~ msgid "No trailing '/', please."
+#~ msgstr "Bitte kein '/' am Ende."
+
+#~ msgid ""
+#~ "Only when using 'external filters', Privoxy has to create temporary files."
+#~ msgstr ""
+#~ "Nur bei Verwendung von 'externen Filtern' muss Privoxy temporäre Dateien "
+#~ "erstellen."
+
+#~ msgid "Please install current version !"
+#~ msgstr "Installieren Sie bitte die aktuelle Version!"
+
+#~ msgid "Please press [Read] button"
+#~ msgstr "Bitte Protokolldatei einlesen"
+
+#~ msgid "Please update to the current version!"
+#~ msgstr "Aktualisieren Sie bitte auf die aktuelle Version!"
+
+#~ msgid ""
+#~ "Privoxy is a non-caching web proxy with advanced filtering capabilities "
+#~ "for enhancing privacy, modifying web page data and HTTP headers, "
+#~ "controlling access, and removing ads and other obnoxious Internet junk."
+#~ msgstr ""
+#~ "Privoxy ist ein non-caching Web-Proxy mit erweiterten Filterfunktion zur "
+#~ "Verbesserung der Privatsphäre. Er modifiziert Webseitendaten und HTTP-"
+#~ "Header, kontrolliert den Zugang und das Entfernen von Anzeigen und "
+#~ "anderem abscheulichen Internet Schrott."
+
+#~ msgid "Read / Reread log file"
+#~ msgstr "Protokolldatei (neu) einlesen"
+
+#~ msgid "Software package '%s' is not installed."
+#~ msgstr "Software Paket '%s' ist nicht installiert."
+
+#~ msgid "Software package '%s' is outdated."
+#~ msgstr "Software Paket '%s' ist nicht aktuell."
+
+#~ msgid "Start"
+#~ msgstr "Start"
+
+#~ msgid "Start / Stop"
+#~ msgstr "Start / Stopp"
+
+#~ msgid "Start/Stop Privoxy WEB Proxy"
+#~ msgstr "Start/Stopp Privoxy WEB Proxy"
+
+#~ msgid ""
+#~ "The directory where all logging takes place (i.e. where the logfile is "
+#~ "located)."
+#~ msgstr "Das Verzeichnis in dem die Protokolldatei gespeichert wird."
+
+#~ msgid ""
+#~ "The value of this option only matters if the experimental trust mechanism "
+#~ "has been activated."
+#~ msgstr ""
+#~ "Der Wert dieser Option ist nur wirksam, wenn der experimentelle Trust-"
+#~ "Mechanismus aktiviert wurde."
+
+#~ msgid "Value is not a number"
+#~ msgstr "Wert ist keine Zahl"
+
+#~ msgid "Value not between 0 and 300"
+#~ msgstr "Wert nicht zwischen 0 und 300"
+
+#~ msgid "Value not between 0 and 9"
+#~ msgstr "Wert nicht zwischen 0 und 9"
+
+#~ msgid "Value not between 1 and 4096"
+#~ msgstr "Wert nicht zwischen 1 und 4096"
+
+#~ msgid "Value not greater 0 or empty"
+#~ msgstr "Wert nicht größer 0 oder leer"
+
+#~ msgid "Version"
+#~ msgstr "Version"
+
+#~ msgid "Version Information"
+#~ msgstr "Versionsinformationen"
+
+#~ msgid "installed"
+#~ msgstr "installiert"
+
+#~ msgid "or higher"
+#~ msgstr "oder höher"
+
+#~ msgid "required"
+#~ msgstr "erforderlich"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2021-01-23 03:57+0000\n"
-"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsprivoxy/el/>\n"
-"Language: el\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.5-dev\n"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
-msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
-msgid "Access Control"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
-msgid "Actions that are applied to all sites and maybe overruled later on."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
-msgid ""
-"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
-"server."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
-msgid "Boot delay"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
-msgid "CGI user interface"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
-msgid "Common Log Format"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
-msgid "Debug GIF de-animation"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
-msgid "Debug force feature"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
-msgid "Debug redirects"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
-msgid "Debug regular expression filters"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
-msgid "Disabled == Transparent Proxy Mode"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
-msgid "Documentation"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
-msgid "Enable proxy authentication forwarding"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
-msgid "Enable/Disable filtering when Privoxy starts."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
-msgid "Enabled"
-msgstr "Ενεργοποιήθηκε"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
-msgid ""
-"Enabling this option is NOT recommended if there is no parent proxy that "
-"requires authentication!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
-msgid "Files and Directories"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
-msgid "Forwarding"
-msgstr ""
-
-#: applications/luci-app-privoxy/root/usr/share/rpcd/acl.d/luci-app-privoxy.json:3
-msgid "Grant UCI access for luci-app-privoxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
-msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
-"should not be able to bypass any blocks."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
-msgid ""
-"If you intend to operate Privoxy for more users than just yourself, it might "
-"be a good idea to let them know how to reach you, what you block and why you "
-"do that, your policies, etc."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
-msgid "It is NOT recommended for the casual user."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
-msgid "Location of the Privoxy User Manual."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
-msgid "Log all data read from the network"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
-msgid "Log all data written to the network"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
-msgid "Log the applying actions"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
-msgid ""
-"Log the destination for each request Privoxy let through. See also 'Debug "
-"1024'."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
-msgid ""
-"Log the destination for requests Privoxy didn't let through, and the reason "
-"why."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
-msgid "Main actions file"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
-msgid "Mandatory Input: No File given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
-msgid "Maximum number of client connections that will be served."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
-msgid "Maximum size (in KB) of the buffer for content filtering."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
-msgid "Non-fatal errors - *we highly recommended enabling this*"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
-msgid ""
-"Number of seconds after which a socket times out if no data is received."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
-msgid ""
-"Number of seconds after which an open connection will no longer be reused."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
-msgid "Please read Privoxy manual for details!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
-msgid "Privoxy WEB proxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
-msgid ""
-"Privoxy can (and normally does) use a number of other files for additional "
-"configuration, help and logging. This section of the configuration file "
-"tells Privoxy where to find those other files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
-msgid "Show I/O status"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
-msgid "Show each connection status"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
-msgid "Show header parsing"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
-msgid "Startup banner and warnings."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
-msgid "Syntax:"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
-msgid "Syntax: Client header names delimited by spaces."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
-msgid "Syntax: target_pattern http_parent[:port]"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
-msgid "System"
-msgstr "Σύστημα"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
-msgid ""
-"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
-"are in fact recommended!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
-msgid ""
-"The address and TCP port on which Privoxy will listen for client requests."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
-msgid ""
-"The compression level that is passed to the zlib library when compressing "
-"buffered content."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
-msgid ""
-"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
-msgid "The directory where the other configuration files are located."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
-msgid ""
-"The filter files contain content modification rules that use regular "
-"expressions."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
-msgid "The hostname shown on the CGI pages."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
-msgid "The log file to use. File name, relative to log directory."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
-msgid "The order in which client headers are sorted before forwarding them."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
-msgid ""
-"The status code Privoxy returns for pages blocked with +handle-as-empty-"
-"document."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
-msgid ""
-"The trust mechanism is an experimental feature for building white-lists and "
-"should be used with care."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
-msgid ""
-"This option is only there for debugging purposes. It will drastically reduce "
-"performance."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
-msgid ""
-"This option will be removed in future releases as it has been obsoleted by "
-"the more general header taggers."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
-msgid ""
-"This tab controls the security-relevant aspects of Privoxy's configuration."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
-msgid ""
-"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
-"specific requests should be routed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
-msgid "To which parent HTTP proxy specific requests should be routed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
-msgid "User customizations"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
-msgid "Value range 1 to 4096, no entry defaults to 4096"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
-msgid "Whether intercepted requests should be treated as valid."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
-msgid ""
-"Whether or not Privoxy recognizes special HTTP headers to change toggle "
-"state."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
-msgid "Whether or not buffered content is compressed before delivery."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
-msgid ""
-"Whether or not outgoing connections that have been kept alive should be "
-"shared between different incoming connections."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
-msgid "Whether or not pipelined requests should be served."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
-msgid "Whether or not proxy authentication through Privoxy should work."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
-msgid "Whether or not the web-based actions file editor may be used."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
-msgid "Whether or not the web-based toggle feature may be used."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
-msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
-msgid ""
-"Whether the CGI interface should stay compatible with broken HTTP clients."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
-msgid "Whether to run only one server thread."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
-msgid "Who can access what."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12-dev\n"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
+"A directory where Privoxy can create temporary files.<br /><strong>Only when "
+"using 'external filters', Privoxy has to create temporary files.</strong>"
msgstr ""
-"Una URL que se mostrará en la página de error que los usuarios verán si se "
-"deniega el acceso a una página que no es de confianza."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
+msgid "Accept intercepted requests"
msgstr ""
-"Una URL para la documentación sobre la configuración o políticas locales de "
-"Privoxy."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr "Un directorio donde Privoxy puede crear archivos temporales."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "Access Control"
msgstr "Control de acceso"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
+msgid "Action Files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
"Las acciones que se aplican a todos los sitios y tal vez se anulan más "
"adelante."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr "Un directorio alternativo desde donde se cargan las plantillas."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
+msgid "Admin Email"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
+msgid "Allow CGI request crunching"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
+msgid ""
+"An alternative directory where the templates are loaded from.<br />No "
+"trailing \"/\", please."
msgstr ""
-"Una dirección de correo electrónico para llegar al administrador de Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
"Supuesto tiempo de espera de mantenimiento del lado del servidor (en "
"segundos) si no está especificado por el servidor."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay"
msgstr "Retraso de arranque"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
+msgid "Buffer Limit"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface"
msgstr "Interfaz de usuario CGI"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
+msgid "Client header order"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format"
msgstr "Formato de registro común"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
+msgid "Compression level"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
+msgid "Configuration Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
+msgid "Configure the Privoxy proxy daemon settings."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
+msgid "Connection sharing"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
+msgid "Debug 1"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
+msgid "Debug 1024"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
+msgid "Debug 128"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
+msgid "Debug 16"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
+msgid "Debug 2"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
+msgid "Debug 2048"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
+msgid "Debug 256"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
+msgid "Debug 32"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
+msgid "Debug 32768"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
+msgid "Debug 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
+msgid "Debug 4096"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
+msgid "Debug 512"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
+msgid "Debug 64"
msgstr ""
-"Configure aquí el enrutamiento de solicitudes HTTP a través de una cadena de "
-"múltiples proxies. Tenga en cuenta que los proxies de los padres pueden "
-"disminuir considerablemente su nivel de privacidad. También se especifican "
-"aquí los proxies SOCKS."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
+msgid "Debug 65536"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
+msgid "Debug 8"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
+msgid "Debug 8192"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation"
msgstr "Depurar GIF desaminación"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature"
msgstr "Depurar característica de fuerza"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects"
msgstr "Depurar redirecciones"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters"
msgstr "Depurar filtros de expresiones regulares"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
+msgid "Default server timeout"
msgstr ""
-"Retraso (en segundos) durante el inicio del sistema antes del inicio de "
-"Privoxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr "¡El directorio no existe!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
+msgid "Delay (in seconds) during system boot before Privoxy starts."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
+msgid "Deny access"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode"
msgstr "Desactivado == Modo Proxy Transparente"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "Documentation"
msgstr "Documentación"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr "¡Durante el retraso, los eventos de ifup no son monitoreados!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
+msgid "Email address for the Privoxy administrator."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
+msgid "Enable action file editor"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
+msgid "Enable compression"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding"
msgstr "Activar reenvío de autenticación proxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
+msgid "Enable remote toggle"
msgstr ""
-"Activar/Desactivar el inicio automático de Privoxy en el inicio del sistema "
-"y los eventos de interfaz"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
+msgid "Enable remote toggle via HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
+msgid "Enable/Disable autostart of Privoxy"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts."
msgstr "Activar/Desactivar el filtrado cuando se inicia Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled"
msgstr "Activado"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
"Activar esta opción NO se recomienda si no hay un proxy principal que "
"requiera autenticación!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr "El archivo '%s' no se encuentra dentro del directorio de configuración"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr "Archivo no encontrado o vacío"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
+msgid "Enforce page blocking"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid "Files and Directories"
msgstr "Archivos y directorios"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr "Para obtener ayuda, utilice el enlace en la opción correspondiente"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
+msgid "Filter files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
+msgid "Forward HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
+msgid "Forward SOCKS 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
+msgid "Forward SOCKS 4A"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
+msgid "Forward SOCKS 5"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
+msgid "Forward SOCKS 5t"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding"
msgstr "Reenvíos"
msgid "Grant UCI access for luci-app-privoxy"
msgstr "Conceder acceso UCI para luci-app-privoxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
+msgid "Handle as empty doc returns ok"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+"If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
-"Si está activado, Privoxy oculta el enlace 'ir allí de todos modos'. El "
-"usuario, obviamente, no debe ser capaz de eludir ningún bloque."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"puede ser una buena idea dejarles saber cómo comunicarse con usted, qué "
"bloquea y por qué lo hace, sus políticas, etc."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr "Dirección de correo electrónico no válida"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
msgid "It is NOT recommended for the casual user."
msgstr "NO se recomienda para el usuario ocasional."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
+msgid "Keep-alive timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
+msgid "Listen addresses"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual."
msgstr "Ubicación del manual de usuario de Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr "Visor de archivo de registro"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
+msgid "Log Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
+msgid "Log File"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network"
msgstr "Registrar todos los datos leídos desde la red"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network"
msgstr "Registrar todos los datos escritos en la red"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions"
msgstr "Registrar las acciones de aplicación"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
"Registrar el destino para cada solicitud que Privoxy dejó pasar. Véase "
"también 'Debug 1024'."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
"Registrar el destino para las solicitudes que Privoxy no dejó pasar y la "
"razón."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr "Inicio sesión"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Main actions file"
msgstr "Archivo de acciones principales"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr "Entrada obligatoria: ¡No se han dado datos!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr "Entrada obligatoria: ¡No hay directorio dado!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No File given!"
msgstr "Entrada obligatoria: ¡No hay archivo dado!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr "Entrada obligatoria: ¡No hay puerto dado!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr "Entrada obligatoria: ¡No hay archivos dados!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
+msgid "Max. client connections"
msgstr ""
-"Entrada obligatoria: ¡No se ha proporcionado una dirección IPv4 válida o un "
-"host!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr ""
-"Entrada obligatoria: ¡No se ha proporcionado una dirección IPv6 válida!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr "Entrada obligatoria: ¡No se ha dado un puerto válido!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
msgid "Maximum number of client connections that will be served."
msgstr "Número máximo de conexiones de clientes que se atenderán."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr "Tamaño máximo (en KB) del búfer para el filtrado de contenido."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr "Varios"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr "No instalado"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr "No hay '/' al final, por favor."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
+msgid "Misc"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr "Errores no fatales - *recomendamos encarecidamente activar esto*"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
"Número de segundos después de los cuales se agota un socket si no se reciben "
"datos."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
"Número de segundos después de los cuales una conexión abierta ya no se "
"volverá a utilizar."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
+msgid "Permit access"
msgstr ""
-"Solo cuando se usan 'filtros externos', Privoxy tiene que crear archivos "
-"temporales."
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr "Por favor, instale la versión actual!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr "Por favor presione el botón [Leer]"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Please read Privoxy manual for details!"
msgstr "Por favor, lea el manual de Privoxy para más detalles!"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr "Por favor, actualice a la versión actual!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
+msgid "Privoxy"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
+msgid "Privoxy Settings"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
+#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy"
msgstr "Privoxy WEB proxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"configuración adicional, ayuda y registro. Esta sección del archivo de "
"configuración le dice a Privoxy dónde encontrar esos otros archivos."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
+msgid "Proxy Info URL"
msgstr ""
-"Privoxy es un proxy web sin almacenamiento en caché con funciones avanzadas "
-"de filtrado para mejorar la privacidad, modificar los datos de las páginas "
-"web y los encabezados HTTP, controlar el acceso y eliminar anuncios y otros "
-"datos basura desagradables de Internet."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr "Leer / releer el archivo de registro"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Show I/O status"
msgstr "Mostrar estado de E/S"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status"
msgstr "Mostrar el estado de cada conexión"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing"
msgstr "Mostrar encabezado analizando"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr "El paquete de software '%s' no está instalado."
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr "El paquete de software '%s' está desactualizado."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "Iniciar"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
+msgid "Single Threaded"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr "Iniciar / Detener"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
+msgid "Socket timeout"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr "Iniciar/Detener Privoxy WEB Proxy"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
+msgid "Split large forms"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Startup banner and warnings."
msgstr "Banner de inicio y advertencias."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
msgid "Syntax:"
msgstr "Sintaxis:"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces."
msgstr "Sintaxis: Nombres de encabezado de cliente delimitados por espacios."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
+msgid ""
+"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]"
msgstr "Sintaxis: target_pattern http_parent[:port]"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
+msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System"
msgstr "Sistema"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
+msgid "Template Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
+msgid "Temporary Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
"Los archivos de acciones a usar. Se permiten varias líneas de archivo de "
"acciones, ¡y de hecho se recomiendan!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
"La dirección y el puerto TCP en el que Privoxy escuchará las solicitudes de "
"los clientes."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
"El nivel de compresión que se pasa a la biblioteca zlib al comprimir el "
"contenido almacenado."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
+"located).<br />No trailing \"/\", please."
msgstr ""
-"El directorio donde tiene lugar todo el registro (es decir, donde se "
-"encuentra el archivo de registro)."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located."
msgstr "El directorio donde se encuentran los otros archivos de configuración."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
"Los archivos de filtro contienen reglas de modificación de contenido que "
"utilizan expresiones regulares."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages."
msgstr "El nombre de host mostrado en las páginas CGI."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory."
msgstr ""
"El archivo de registro a utilizar. Nombre del archivo, relativo al "
"directorio de registro."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
"El orden en que se clasifican los encabezados de los clientes antes de "
"reenviarlos."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
"El código de estado que Privoxy devuelve para las páginas bloqueadas con "
"+handle-as-empty-document."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
"El mecanismo de confianza es una característica experimental para construir "
"listas blancas y debe usarse con cuidado."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-"El valor de esta opción solo importa si se ha activado el mecanismo de "
-"confianza experimental."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
"Esta opción solo está ahí para fines de depuración. Reducirá drásticamente "
"el rendimiento."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
"Esta opción se eliminará en futuras versiones, ya que ha sido obsoleta por "
"los etiquetadores de encabezado más generales."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
"Esta pestaña controla los aspectos relevantes para la seguridad de la "
"configuración de Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
"A través de qué proxy SOCKS (y, opcionalmente, a qué proxy HTTP principal) "
"se deben enrutar las solicitudes específicas."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr ""
"A qué enrutamiento deben dirigirse las solicitudes específicas del proxy "
"HTTP."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
+msgid "Toggle Status"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
+msgid "Tolerate pipelining"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
+msgid "Trust Info URL"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
+msgid "Trust file"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
+msgid ""
+"URL shown if access to an untrusted page is denied. Only applies if trust "
+"mechanism is enabled."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
+msgid "URL to documentation about the local Privoxy setup."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
+msgid "User Manual"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
msgid "User customizations"
msgstr "Personalizaciones de usuario"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr "El valor no es un número"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr "Valor no entre 0 y 300"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr "Valor no entre 0 y 9"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr "Valor no entre 1 y 4096"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr "Valor no mayor a 0 o vacío"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr "Rango de valores de 1 a 4096, sin entrada por defecto a 4096"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "Versión"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr "Información de versión"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
msgid "Whether intercepted requests should be treated as valid."
msgstr "Si las solicitudes interceptadas deben tratarse como válidas."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
"Si Privoxy reconoce o no encabezados HTTP especiales para cambiar el estado "
"de conmutación."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery."
msgstr ""
"Si el contenido almacenado en búfer se comprime o no antes de la entrega."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
"Si las conexiones salientes que se han mantenido vivas deben compartirse "
"entre diferentes conexiones entrantes."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served."
msgstr "Si las solicitudes canalizadas deben ser atendidas o no."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr "Si la autenticación proxy a través de Privoxy debería o no funcionar."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used."
msgstr ""
"Si se puede usar o no el editor de archivos de acciones basadas en web."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used."
msgstr "Si se puede usar o no la función de conmutación basada en la web."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
"Si las solicitudes a las páginas CGI de Privoxy se pueden bloquear o "
"redirigir."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
"Si la interfaz CGI debe permanecer compatible con los clientes HTTP rotos."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread."
msgstr "Ya sea para ejecutar un solo hilo del servidor."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what."
msgstr "Quién puede acceder a qué."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr "instalado"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr "o mas alto"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr "requerido"
+#~ msgid ""
+#~ "A URL to be displayed in the error page that users will see if access to "
+#~ "an untrusted page is denied."
+#~ msgstr ""
+#~ "Una URL que se mostrará en la página de error que los usuarios verán si "
+#~ "se deniega el acceso a una página que no es de confianza."
+
+#~ msgid ""
+#~ "A URL to documentation about the local Privoxy setup, configuration or "
+#~ "policies."
+#~ msgstr ""
+#~ "Una URL para la documentación sobre la configuración o políticas locales "
+#~ "de Privoxy."
+
+#~ msgid "A directory where Privoxy can create temporary files."
+#~ msgstr "Un directorio donde Privoxy puede crear archivos temporales."
+
+#~ msgid "An alternative directory where the templates are loaded from."
+#~ msgstr "Un directorio alternativo desde donde se cargan las plantillas."
+
+#~ msgid "An email address to reach the Privoxy administrator."
+#~ msgstr ""
+#~ "Una dirección de correo electrónico para llegar al administrador de "
+#~ "Privoxy."
+
+#~ msgid ""
+#~ "Configure here the routing of HTTP requests through a chain of multiple "
+#~ "proxies. Note that parent proxies can severely decrease your privacy "
+#~ "level. Also specified here are SOCKS proxies."
+#~ msgstr ""
+#~ "Configure aquí el enrutamiento de solicitudes HTTP a través de una cadena "
+#~ "de múltiples proxies. Tenga en cuenta que los proxies de los padres "
+#~ "pueden disminuir considerablemente su nivel de privacidad. También se "
+#~ "especifican aquí los proxies SOCKS."
+
+#~ msgid "Delay (in seconds) during system boot before Privoxy start"
+#~ msgstr ""
+#~ "Retraso (en segundos) durante el inicio del sistema antes del inicio de "
+#~ "Privoxy"
+
+#~ msgid "Directory does not exist!"
+#~ msgstr "¡El directorio no existe!"
+
+#~ msgid "During delay ifup-events are not monitored !"
+#~ msgstr "¡Durante el retraso, los eventos de ifup no son monitoreados!"
+
+#~ msgid ""
+#~ "Enable/Disable autostart of Privoxy on system startup and interface events"
+#~ msgstr ""
+#~ "Activar/Desactivar el inicio automático de Privoxy en el inicio del "
+#~ "sistema y los eventos de interfaz"
+
+#~ msgid "File '%s' not found inside Configuration Directory"
+#~ msgstr ""
+#~ "El archivo '%s' no se encuentra dentro del directorio de configuración"
+
+#~ msgid "File not found or empty"
+#~ msgstr "Archivo no encontrado o vacío"
+
+#~ msgid "For help use link at the relevant option"
+#~ msgstr "Para obtener ayuda, utilice el enlace en la opción correspondiente"
+
+#~ msgid ""
+#~ "If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+#~ "should not be able to bypass any blocks."
+#~ msgstr ""
+#~ "Si está activado, Privoxy oculta el enlace 'ir allí de todos modos'. El "
+#~ "usuario, obviamente, no debe ser capaz de eludir ningún bloque."
+
+#~ msgid "Invalid email address"
+#~ msgstr "Dirección de correo electrónico inváida"
+
+#~ msgid "Log File Viewer"
+#~ msgstr "Visor de archivo de registro"
+
+#~ msgid "Logging"
+#~ msgstr "Inicio sesión"
+
+#~ msgid "Mandatory Input: No Data given!"
+#~ msgstr "Entrada obligatoria: ¡No se han dado datos!"
+
+#~ msgid "Mandatory Input: No Directory given!"
+#~ msgstr "Entrada obligatoria: ¡No hay directorio dado!"
+
+#~ msgid "Mandatory Input: No Port given!"
+#~ msgstr "Entrada obligatoria: ¡No hay puerto dado!"
+
+#~ msgid "Mandatory Input: No files given!"
+#~ msgstr "Entrada obligatoria: ¡No hay archivos dados!"
+
+#~ msgid "Mandatory Input: No valid IPv4 address or host given!"
+#~ msgstr ""
+#~ "Entrada obligatoria: ¡No se ha proporcionado una dirección IPv4 válida o "
+#~ "un host!"
+
+#~ msgid "Mandatory Input: No valid IPv6 address given!"
+#~ msgstr ""
+#~ "Entrada obligatoria: ¡No se ha proporcionado una dirección IPv6 válida!"
+
+#~ msgid "Mandatory Input: No valid Port given!"
+#~ msgstr "Entrada obligatoria: ¡No se ha dado un puerto válido!"
+
+#~ msgid "Miscellaneous"
+#~ msgstr "Varios"
+
+#~ msgid "NOT installed"
+#~ msgstr "No instalado"
+
+#~ msgid "No trailing '/', please."
+#~ msgstr "No hay '/' al final, por favor."
+
+#~ msgid ""
+#~ "Only when using 'external filters', Privoxy has to create temporary files."
+#~ msgstr ""
+#~ "Solo cuando se usan 'filtros externos', Privoxy tiene que crear archivos "
+#~ "temporales."
+
+#~ msgid "Please install current version !"
+#~ msgstr "Por favor, instale la versión actual!"
+
+#~ msgid "Please press [Read] button"
+#~ msgstr "Por favor presione el botón [Leer]"
+
+#~ msgid "Please update to the current version!"
+#~ msgstr "Por favor, actualice a la versión actual!"
+
+#~ msgid ""
+#~ "Privoxy is a non-caching web proxy with advanced filtering capabilities "
+#~ "for enhancing privacy, modifying web page data and HTTP headers, "
+#~ "controlling access, and removing ads and other obnoxious Internet junk."
+#~ msgstr ""
+#~ "Privoxy es un proxy web sin almacenamiento en caché con funciones "
+#~ "avanzadas de filtrado para mejorar la privacidad, modificar los datos de "
+#~ "las páginas web y los encabezados HTTP, controlar el acceso y eliminar "
+#~ "anuncios y otros datos basura desagradables de Internet."
+
+#~ msgid "Read / Reread log file"
+#~ msgstr "Leer / volver a leer el archivo de registro"
+
+#~ msgid "Software package '%s' is not installed."
+#~ msgstr "El paquete de software '%s' no está instalado."
+
+#~ msgid "Software package '%s' is outdated."
+#~ msgstr "El paquete de software '%s' está desactualizado."
+
+#~ msgid "Start"
+#~ msgstr "Iniciar"
+
+#~ msgid "Start / Stop"
+#~ msgstr "Iniciar / Detener"
+
+#~ msgid "Start/Stop Privoxy WEB Proxy"
+#~ msgstr "Iniciar/Detener Privoxy WEB Proxy"
+
+#~ msgid ""
+#~ "The directory where all logging takes place (i.e. where the logfile is "
+#~ "located)."
+#~ msgstr ""
+#~ "El directorio donde tiene lugar todo el registro (es decir, donde se "
+#~ "encuentra el archivo de registro)."
+
+#~ msgid ""
+#~ "The value of this option only matters if the experimental trust mechanism "
+#~ "has been activated."
+#~ msgstr ""
+#~ "El valor de esta opción solo importa si se ha activado el mecanismo de "
+#~ "confianza experimental."
+
+#~ msgid "Value is not a number"
+#~ msgstr "El valor no es un número"
+
+#~ msgid "Value not between 0 and 300"
+#~ msgstr "Valor no entre 0 y 300"
+
+#~ msgid "Value not between 0 and 9"
+#~ msgstr "Valor no entre 0 y 9"
+
+#~ msgid "Value not between 1 and 4096"
+#~ msgstr "Valor no entre 1 y 4096"
+
+#~ msgid "Value not greater 0 or empty"
+#~ msgstr "Valor no mayor a 0 o vacío"
+
+#~ msgid "Version"
+#~ msgstr "Versión"
+
+#~ msgid "Version Information"
+#~ msgstr "Información de versión"
+
+#~ msgid "installed"
+#~ msgstr "instalado"
+
+#~ msgid "or higher"
+#~ msgstr "o mas alto"
+
+#~ msgid "required"
+#~ msgstr "requerido"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2025-04-30 09:26+0000\n"
-"Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsprivoxy/fi/>\n"
-"Language: fi\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.12-dev\n"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
-msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
-msgid "Access Control"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
-msgid "Actions that are applied to all sites and maybe overruled later on."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
-msgid ""
-"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
-"server."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
-msgid "Boot delay"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
-msgid "CGI user interface"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
-msgid "Common Log Format"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
-msgid "Debug GIF de-animation"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
-msgid "Debug force feature"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
-msgid "Debug redirects"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
-msgid "Debug regular expression filters"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
-msgid "Disabled == Transparent Proxy Mode"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
-msgid "Documentation"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
-msgid "Enable proxy authentication forwarding"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
-msgid "Enable/Disable filtering when Privoxy starts."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
-msgid "Enabled"
-msgstr "Otettu käyttöön"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
-msgid ""
-"Enabling this option is NOT recommended if there is no parent proxy that "
-"requires authentication!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
-msgid "Files and Directories"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
-msgid "Forwarding"
-msgstr ""
-
-#: applications/luci-app-privoxy/root/usr/share/rpcd/acl.d/luci-app-privoxy.json:3
-msgid "Grant UCI access for luci-app-privoxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
-msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
-"should not be able to bypass any blocks."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
-msgid ""
-"If you intend to operate Privoxy for more users than just yourself, it might "
-"be a good idea to let them know how to reach you, what you block and why you "
-"do that, your policies, etc."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
-msgid "It is NOT recommended for the casual user."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
-msgid "Location of the Privoxy User Manual."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
-msgid "Log all data read from the network"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
-msgid "Log all data written to the network"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
-msgid "Log the applying actions"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
-msgid ""
-"Log the destination for each request Privoxy let through. See also 'Debug "
-"1024'."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
-msgid ""
-"Log the destination for requests Privoxy didn't let through, and the reason "
-"why."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr "Kirjaaminen"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
-msgid "Main actions file"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
-msgid "Mandatory Input: No File given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
-msgid "Maximum number of client connections that will be served."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
-msgid "Maximum size (in KB) of the buffer for content filtering."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr "Sekalaiset"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
-msgid "Non-fatal errors - *we highly recommended enabling this*"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
-msgid ""
-"Number of seconds after which a socket times out if no data is received."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
-msgid ""
-"Number of seconds after which an open connection will no longer be reused."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
-msgid "Please read Privoxy manual for details!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
-msgid "Privoxy WEB proxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
-msgid ""
-"Privoxy can (and normally does) use a number of other files for additional "
-"configuration, help and logging. This section of the configuration file "
-"tells Privoxy where to find those other files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
-msgid "Show I/O status"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
-msgid "Show each connection status"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
-msgid "Show header parsing"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "Aloita"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
-msgid "Startup banner and warnings."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
-msgid "Syntax:"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
-msgid "Syntax: Client header names delimited by spaces."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
-msgid "Syntax: target_pattern http_parent[:port]"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
-msgid "System"
-msgstr "Järjestelmä"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
-msgid ""
-"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
-"are in fact recommended!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
-msgid ""
-"The address and TCP port on which Privoxy will listen for client requests."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
-msgid ""
-"The compression level that is passed to the zlib library when compressing "
-"buffered content."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
-msgid ""
-"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
-msgid "The directory where the other configuration files are located."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
-msgid ""
-"The filter files contain content modification rules that use regular "
-"expressions."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
-msgid "The hostname shown on the CGI pages."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
-msgid "The log file to use. File name, relative to log directory."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
-msgid "The order in which client headers are sorted before forwarding them."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
-msgid ""
-"The status code Privoxy returns for pages blocked with +handle-as-empty-"
-"document."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
-msgid ""
-"The trust mechanism is an experimental feature for building white-lists and "
-"should be used with care."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
-msgid ""
-"This option is only there for debugging purposes. It will drastically reduce "
-"performance."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
-msgid ""
-"This option will be removed in future releases as it has been obsoleted by "
-"the more general header taggers."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
-msgid ""
-"This tab controls the security-relevant aspects of Privoxy's configuration."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
-msgid ""
-"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
-"specific requests should be routed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
-msgid "To which parent HTTP proxy specific requests should be routed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
-msgid "User customizations"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
-msgid "Value range 1 to 4096, no entry defaults to 4096"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "Versio"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
-msgid "Whether intercepted requests should be treated as valid."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
-msgid ""
-"Whether or not Privoxy recognizes special HTTP headers to change toggle "
-"state."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
-msgid "Whether or not buffered content is compressed before delivery."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
-msgid ""
-"Whether or not outgoing connections that have been kept alive should be "
-"shared between different incoming connections."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
-msgid "Whether or not pipelined requests should be served."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
-msgid "Whether or not proxy authentication through Privoxy should work."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
-msgid "Whether or not the web-based actions file editor may be used."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
-msgid "Whether or not the web-based toggle feature may be used."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
-msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
-msgid ""
-"Whether the CGI interface should stay compatible with broken HTTP clients."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
-msgid "Whether to run only one server thread."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
-msgid "Who can access what."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.18.1\n"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
+"A directory where Privoxy can create temporary files.<br /><strong>Only when "
+"using 'external filters', Privoxy has to create temporary files.</strong>"
msgstr ""
-"Une URL à afficher dans la page d'erreur que les utilisateurs verront si "
-"l'accès à une page non approuvée est refusé."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
+msgid "Accept intercepted requests"
msgstr ""
-"Une URL pour la documentation de l'installation, de la configuration ou des "
-"stratégies de Privoxy."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr "Un répertoire où Privoxy peut créer des fichiers temporaires."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "Access Control"
msgstr "Contrôle d'accès"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
+msgid "Action Files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
"Actions qui sont appliqué sur tout les sites et qui peuvent être annulé par "
"la suite."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr "Dossier alternatif depuis lequel les templates peuvent être chargés."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
+msgid "Admin Email"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
+msgid "Allow CGI request crunching"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr "Une adresse email pour joindre l'administrateur du Privoxy ."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
+msgid ""
+"An alternative directory where the templates are loaded from.<br />No "
+"trailing \"/\", please."
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
"Délai d'expiration présumé du maintien de la connexion coté serveur (en "
"secondes) s'il n'est pas spécifié par le serveur."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay"
msgstr "Délai de démarrage"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
+msgid "Buffer Limit"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface"
msgstr "Interface utilisateur CGI"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
+msgid "Client header order"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format"
msgstr "Format de journal commun"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
+msgid "Compression level"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
+msgid "Configuration Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
+msgid "Configure the Privoxy proxy daemon settings."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
+msgid "Connection sharing"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
+msgid "Debug 1"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
+msgid "Debug 1024"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
+msgid "Debug 128"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
+msgid "Debug 16"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
+msgid "Debug 2"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
+msgid "Debug 2048"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
+msgid "Debug 256"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
+msgid "Debug 32"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
+msgid "Debug 32768"
msgstr ""
-"Configurez ici le routage des requêtes HTTP à travers d'une chaine de "
-"plusieurs proxy. Notez que les proxy parent peuvent réduire considérablement "
-"votre niveau de confidentialité. Les proxy SOCKS sont également spécifié ici."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
+msgid "Debug 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
+msgid "Debug 4096"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
+msgid "Debug 512"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
+msgid "Debug 64"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
+msgid "Debug 65536"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
+msgid "Debug 8"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
+msgid "Debug 8192"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation"
msgstr "Debug GIF désanimé"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature"
msgstr "Debug forcer la fonctionnalité"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects"
msgstr "Debug rediriger"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters"
msgstr "Debug filtres d'expression régulière"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
+msgid "Default server timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
+msgid "Delay (in seconds) during system boot before Privoxy starts."
msgstr ""
-"Délais (en secondes) durant le démarrage du système avant que Privoxy se "
-"lance"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr "Le dossier n'existe pas !"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
+msgid "Deny access"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode"
msgstr "Désactivé == Mode Proxy Transparent"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "Documentation"
msgstr "Documentation"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr "Délais durant lequel ifup-events n'est pas surveillé !"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
+msgid "Email address for the Privoxy administrator."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
+msgid "Enable action file editor"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
+msgid "Enable compression"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding"
msgstr "Activer le transfert d'authentification proxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
+msgid "Enable remote toggle"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
+msgid "Enable remote toggle via HTTP"
msgstr ""
-"Active/Désactive le lancement automatique de Privoxy au démarrage du système "
-"et des évènements d'interfaces"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
+msgid "Enable/Disable autostart of Privoxy"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts."
msgstr "Active/Désactive le filtrage quand Privoxy démarre."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled"
msgstr "Activé"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
"Activer cette option n'est PAS recommandé si il n'y à pas de proxy parent "
"qui requièrent une authentification !"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr "Pas de fichier '%s' trouvé dans le répertoire Configuration"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr "Fichier introuvable ou vide"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
+msgid "Enforce page blocking"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid "Files and Directories"
msgstr "Fichiers et Répertoires"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr "Pour de l'aide, utilisez le lien à côté du paramètre"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
+msgid "Filter files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
+msgid "Forward HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
+msgid "Forward SOCKS 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
+msgid "Forward SOCKS 4A"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
+msgid "Forward SOCKS 5"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
+msgid "Forward SOCKS 5t"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding"
msgstr "Envoi"
msgid "Grant UCI access for luci-app-privoxy"
msgstr "Accorder l'accès UCI pour luci-app-privoxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
+msgid "Handle as empty doc returns ok"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+"If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
-"Si activé, Privoxy cache le lien 'y aller quand même'. Evidement, "
-"l'utilisateur ne devrais pas pouvoir outrepasser le moindre blocage."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"il serait bon de leurs donner un moyen de vous joindre, leurs indiquer ce "
"que vous bloquez et pourquoi vous faites ça, vos règles, etc."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr "Adresse email invalide"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
msgid "It is NOT recommended for the casual user."
msgstr "Ceci n'est PAS recommandé pour un utilisateur normal."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
+msgid "Keep-alive timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
+msgid "Listen addresses"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual."
msgstr "Emplacement du manuel d'utilisation de Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr "Visualiseur de fichier de journa"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
+msgid "Log Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
+msgid "Log File"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network"
msgstr "Enregistrer toutes les données lues à partir du réseau"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network"
msgstr "Enregistrer toutes les données écrites à partir du réseau"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions"
msgstr "Journaliser les actions appliqués"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
"Journaliser la destination pour chaque requêtes que Privoxy à laissé passer. "
"Allez aussi voir 'Debug 1024'."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
"Journaliser la destination pour chaque requêtes que Privoxy n'à pas laissé "
"passer, et les raisons pourquoi."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr "Journalisation"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Main actions file"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No File given!"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
+msgid "Max. client connections"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
msgid "Maximum number of client connections that will be served."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr "Divers"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr "NON installé"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
+msgid "Misc"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
"Nombre de secondes après lesquelles un socket expire si aucune donnée n’est "
"reçue."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
+msgid "Permit access"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
+msgid "Please read Privoxy manual for details!"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr "Veuillez appuyer sur le bouton [Lire]"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
-msgid "Please read Privoxy manual for details!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
+msgid "Privoxy"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
+msgid "Privoxy Settings"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
+#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"tells Privoxy where to find those other files."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
+msgid "Proxy Info URL"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr "Lire/Relire le fichier de journal"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Show I/O status"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
+msgid "Single Threaded"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
+msgid "Socket timeout"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "Démarrer"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr "Démarrer/Arrêter"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
+msgid "Split large forms"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Startup banner and warnings."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
msgid "Syntax:"
msgstr "Syntaxe:"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
+msgid ""
+"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
+msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System"
msgstr "Système"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
+msgid "Template Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
+msgid "Temporary Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
"Fichier(s) d’actions à utiliser. Plusieurs lignes de fichier d’actions sont "
"autorisées et sont en fait recommandées !"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
"Le niveau de compression transmis à la bibliothèque zlib lors de la "
"compression du contenu mis en mémoire tampon."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
+"located).<br />No trailing \"/\", please."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
"Le mécanisme de confiance est une fonctionnalité expérimentale pour la "
"création de listes blanches et doit être utilisé avec précaution."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-"La valeur de cette option ne compte que si le mécanisme expérimental de "
-"confiance a été activé."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
"Cette option sera supprimée dans les prochaines versions car elle a été "
"rendue obsolète par les balises d'en-tête plus générales."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
"Par quel proxy SOCKS (et éventuellement vers quel proxy HTTP parent) les "
"requêtes spécifiques doivent être acheminées."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
-msgid "User customizations"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
+msgid "Toggle Status"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
+msgid "Tolerate pipelining"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
+msgid "Trust Info URL"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
+msgid "Trust file"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
+msgid ""
+"URL shown if access to an untrusted page is denied. Only applies if trust "
+"mechanism is enabled."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
+msgid "URL to documentation about the local Privoxy setup."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
-msgid "Value range 1 to 4096, no entry defaults to 4096"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
+msgid "User Manual"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "Version"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
+msgid "User customizations"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr "Informations de version"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
+msgid "Value range 1 to 4096, no entry defaults to 4096"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
msgid "Whether intercepted requests should be treated as valid."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
"Indique si les connexions sortantes qui ont été maintenues en vie doivent ou "
"non être partagées entre différentes connexions entrantes."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr "installé"
+#~ msgid ""
+#~ "A URL to be displayed in the error page that users will see if access to "
+#~ "an untrusted page is denied."
+#~ msgstr ""
+#~ "Une URL à afficher dans la page d'erreur que les utilisateurs verront si "
+#~ "l'accès à une page non approuvée est refusé."
+
+#~ msgid ""
+#~ "A URL to documentation about the local Privoxy setup, configuration or "
+#~ "policies."
+#~ msgstr ""
+#~ "Une URL pour la documentation de l'installation, de la configuration ou "
+#~ "des stratégies de Privoxy."
+
+#~ msgid "A directory where Privoxy can create temporary files."
+#~ msgstr "Un répertoire où Privoxy peut créer des fichiers temporaires."
+
+#~ msgid "An alternative directory where the templates are loaded from."
+#~ msgstr ""
+#~ "Dossier alternatif depuis lequel les templates peuvent être chargés."
+
+#~ msgid "An email address to reach the Privoxy administrator."
+#~ msgstr "Une adresse email pour joindre l'administrateur du Privoxy ."
+
+#~ msgid ""
+#~ "Configure here the routing of HTTP requests through a chain of multiple "
+#~ "proxies. Note that parent proxies can severely decrease your privacy "
+#~ "level. Also specified here are SOCKS proxies."
+#~ msgstr ""
+#~ "Configurez ici le routage des requêtes HTTP à travers d'une chaine de "
+#~ "plusieurs proxy. Notez que les proxy parent peuvent réduire "
+#~ "considérablement votre niveau de confidentialité. Les proxy SOCKS sont "
+#~ "également spécifié ici."
+
+#~ msgid "Delay (in seconds) during system boot before Privoxy start"
+#~ msgstr ""
+#~ "Délais (en secondes) durant le démarrage du système avant que Privoxy se "
+#~ "lance"
+
+#~ msgid "Directory does not exist!"
+#~ msgstr "Le dossier n'existe pas !"
+
+#~ msgid "During delay ifup-events are not monitored !"
+#~ msgstr "Délais durant lequel ifup-events n'est pas surveillé !"
+
+#~ msgid ""
+#~ "Enable/Disable autostart of Privoxy on system startup and interface events"
+#~ msgstr ""
+#~ "Active/Désactive le lancement automatique de Privoxy au démarrage du "
+#~ "système et des évènements d'interfaces"
+
+#~ msgid "File '%s' not found inside Configuration Directory"
+#~ msgstr "Pas de fichier '%s' trouvé dans le répertoire Configuration"
+
+#~ msgid "File not found or empty"
+#~ msgstr "Fichier introuvable ou vide"
+
+#~ msgid "For help use link at the relevant option"
+#~ msgstr "Pour de l'aide, utilisez le lien à côté du paramètre"
+
+#~ msgid ""
+#~ "If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+#~ "should not be able to bypass any blocks."
+#~ msgstr ""
+#~ "Si activé, Privoxy cache le lien 'y aller quand même'. Evidement, "
+#~ "l'utilisateur ne devrais pas pouvoir outrepasser le moindre blocage."
+
+#~ msgid "Invalid email address"
+#~ msgstr "Adresse email invalide"
+
+#~ msgid "Log File Viewer"
+#~ msgstr "Visualiseur de fichier de journa"
+
+#~ msgid "Logging"
+#~ msgstr "Journalisation"
+
+#~ msgid "Miscellaneous"
+#~ msgstr "Divers"
+
+#~ msgid "NOT installed"
+#~ msgstr "NON installé"
+
+#~ msgid "Please press [Read] button"
+#~ msgstr "Veuillez appuyer sur le bouton [Lire]"
+
+#~ msgid "Read / Reread log file"
+#~ msgstr "Lire/Relire le fichier de journal"
+
+#~ msgid "Start"
+#~ msgstr "Démarrer"
+
+#~ msgid "Start / Stop"
+#~ msgstr "Démarrer/Arrêter"
+
+#~ msgid ""
+#~ "The value of this option only matters if the experimental trust mechanism "
+#~ "has been activated."
+#~ msgstr ""
+#~ "La valeur de cette option ne compte que si le mécanisme expérimental de "
+#~ "confiance a été activé."
+
+#~ msgid "Version"
+#~ msgstr "Version"
+
+#~ msgid "Version Information"
+#~ msgstr "Informations de version"
+
+#~ msgid "installed"
+#~ msgstr "installé"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr "ou plus grand"
+#~ msgid "or higher"
+#~ msgstr "ou plus grand"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr "requis"
+#~ msgid "required"
+#~ msgstr "requis"
"(n>6 && n<11) ? 3 : 4;\n"
"X-Generator: Weblate 5.8-dev\n"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
+"A directory where Privoxy can create temporary files.<br /><strong>Only when "
+"using 'external filters', Privoxy has to create temporary files.</strong>"
msgstr ""
-"URL le taispeáint sa leathanach earráide a fheicfidh úsáideoirí má "
-"dhiúltaítear rochtain ar leathanach neamhiontaofa."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
+msgid "Accept intercepted requests"
msgstr ""
-"URL chun doiciméadú faoi shocrú, cumraíocht nó beartais áitiúil Privoxy."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr "Eolaire inar féidir le Privoxy comhaid shealadacha a chruthú."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "Access Control"
msgstr "Rialú Rochtana"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
+msgid "Action Files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
"Gníomhartha a chuirtear i bhfeidhm ar gach suíomh agus b'fhéidir a shárú "
"níos déanaí."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr "Eolaire malartach áit a luchtaítear na teimpléid."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
+msgid "Admin Email"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr "Seoladh ríomhphoist chun riarthóir Privoxy a bhaint amach."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
+msgid "Allow CGI request crunching"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
+msgid ""
+"An alternative directory where the templates are loaded from.<br />No "
+"trailing \"/\", please."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
"Glactar leis an am a choinneáil beo ar thaobh an fhreastalaí (i soicindí) "
"mura ndéanann an freastalaí a shonrú."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay"
msgstr "Moill tosaithe"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
+msgid "Buffer Limit"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface"
msgstr "Comhéadan úsáideora CGI"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
+msgid "Client header order"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format"
msgstr "Formáid Logála Coiteann"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
+msgid "Compression level"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
+msgid "Configuration Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
+msgid "Configure the Privoxy proxy daemon settings."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
+msgid "Connection sharing"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
+msgid "Debug 1"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
+msgid "Debug 1024"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
+msgid "Debug 128"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
+msgid "Debug 16"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
+msgid "Debug 2"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
+msgid "Debug 2048"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
+msgid "Debug 256"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
+msgid "Debug 32"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
+msgid "Debug 32768"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
+msgid "Debug 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
+msgid "Debug 4096"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
+msgid "Debug 512"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
+msgid "Debug 64"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
+msgid "Debug 65536"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
+msgid "Debug 8"
msgstr ""
-"Cumraigh anseo ródú iarratais HTTP trí slabhra iolracha seachfhreastaí. "
-"Tabhair faoi deara gur féidir le seachfhreastóirí tuismitheoirí do leibhéal "
-"príobháideachta Sonraítear anseo freisin tá seachfhálaí SOCKS."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
+msgid "Debug 8192"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation"
msgstr "Díbheochan GIF a dhífhabhtú"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature"
msgstr "Gné fórsa dífhabhtaithe"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects"
msgstr "Atreoracha dífhabhtú"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters"
msgstr "Dífhabhtaigh scagairí léirithe"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
-msgstr "Moill (i soicindí) le linn tosaithe an chórais sula dtosaíonn Privoxy"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
+msgid "Default server timeout"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr "Níl Eolaire ann!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
+msgid "Delay (in seconds) during system boot before Privoxy starts."
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
+msgid "Deny access"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode"
msgstr "Díchumasaithe == Mód Seachfhreastala"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "Documentation"
msgstr "Doiciméadú"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr "Le linn moill ní dhéantar monatóireacht ar imeachtaí ifup!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
+msgid "Email address for the Privoxy administrator."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
+msgid "Enable action file editor"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
+msgid "Enable compression"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding"
msgstr "Cumasaigh seachfhíordheimhniú"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
+msgid "Enable remote toggle"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
+msgid "Enable remote toggle via HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
+msgid "Enable/Disable autostart of Privoxy"
msgstr ""
-"Cumasach/Díchumasaigh uathosú Privoxy ar imeachtaí tosaithe agus comhéadain "
-"an chórais"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts."
msgstr "Cumasach/Díchumasaigh scagadh nuair a thosaíonn Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled"
msgstr "Cumasaithe"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
"NÍ mholtar an rogha seo a chumasú mura bhfuil seachfhreastalaí tuismitheora "
"ann a dteastaíonn fíordheimhniú uaidh!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr "Níor aimsíodh comhad '%s' taobh istigh de Eolaire Cumraíochta"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr "Níor aimsíodh comhad nó folamh"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
+msgid "Enforce page blocking"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid "Files and Directories"
msgstr "Comhaid agus Eolairí"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr "Le haghaidh cabhrach bain úsáid as an nasc ag an rogha ábhartha"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
+msgid "Filter files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
+msgid "Forward HTTP"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
+msgid "Forward SOCKS 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
+msgid "Forward SOCKS 4A"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
+msgid "Forward SOCKS 5"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
+msgid "Forward SOCKS 5t"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding"
msgstr "Ag Seoladh"
msgid "Grant UCI access for luci-app-privoxy"
msgstr "Rochtain UCI a dheonú do luci-app-privoxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
+msgid "Handle as empty doc returns ok"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+"If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
-"Má tá sé cumasaithe, folaíonn Privoxy an nasc ‘téigh ann ar aon nós’. Is "
-"léir nár cheart go mbeadh an t-úsáideoir in ann aon bhloc a sheachbhóthar."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"bhaint amach, cad a chuireann tú bac agus cén fáth a ndéanann tú é sin, do "
"bheartais, srl."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr "Seoladh ríomhphoist neam"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
msgid "It is NOT recommended for the casual user."
msgstr "NÍ mholtar é don úsáideoir ócáideach."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
+msgid "Keep-alive timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
+msgid "Listen addresses"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual."
msgstr "Suíomh Lámhleabhar Úsáideora Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr "Breathnóir Comhad Logála"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
+msgid "Log Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
+msgid "Log File"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network"
msgstr "Logáil na sonraí go léite ón líonra"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network"
msgstr "Logáil na sonraí go léir scríofa chuig an líonra"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions"
msgstr "Logáil na gníomhartha iarratais"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
"Logáil an ceann scríbe do gach iarratas a ligeann Privoxy tríd. Féach "
"freisin 'Debug 1024'."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
"Logáil an ceann scríbe d'iarratais nár lig Privoxy tríd, agus an chúis cén "
"fáth."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr "Logáil"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Main actions file"
msgstr "Príomh-chomhad gníomhartha"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr "Ionchur Éigeantach: Níl aon Sonraí tugtha!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr "Ionchur Éigeantach: Níl aon Eolaire tugtha!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No File given!"
msgstr "Ionchur Éigeantach: Níl aon Comhad tugtha!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr "Ionchur Éigeantach: Níl aon Port tugtha!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr "Ionchur Éigeantach: Níl aon chomhaid tugtha!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
-msgstr "Ionchur Éigeantach: Níl aon seoladh nó óstach bailí IPv4 tugtha!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr "Ionchur Éigeantach: Níl aon seoladh bailí IPv6 tugtha!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr "Ionchur Éigeantach: Níl aon Port bailí tugtha!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
+msgid "Max. client connections"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
msgid "Maximum number of client connections that will be served."
msgstr "Líon uasta na naisc cliant a sheirbheálfar."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr "Uasmhéid (i KB) an maoláin le haghaidh scagadh ábhair."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr "Ilghnéireach"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr "NÍL suiteáilte"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr "Gan aon leanúint '/', le do thoil."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
+msgid "Misc"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr "Earráidí neamh-mharfacha - * molaimid go mór é seo a chumasú*"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
"Líon na soicind ina dhiaidh sin déanann soicéad amach mura bhfaightear aon "
"sonraí."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
"Líon na soicind ina dhiaidh sin ní athúsáidfear nasc oscailte a thuilleadh."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
+msgid "Permit access"
msgstr ""
-"Ní mór do Privoxy comhaid shealadacha a chruthú ach amháin nuair a bhíonn "
-"'scagairí seachtracha á n-úsáid agat."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr "Suiteáil an leagan reatha le do thoil!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr "Brúigh [Léigh] cnaipe le do thoil"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Please read Privoxy manual for details!"
msgstr "Léigh lámhleabhar Privoxy le haghaidh sonraí!"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr "Nuashonraigh an leagan reatha le do thoil!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
+msgid "Privoxy"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
+msgid "Privoxy Settings"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
+#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy"
msgstr "Seachfhreastalaí WEB Privoxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"den chomhad cumraíochta do Privoxy cá háit ar féidir na comhaid eile sin a "
"fháil."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
+msgid "Proxy Info URL"
msgstr ""
-"Is seachfhreastalaí gréasáin neamh-chaching é Privoxy le hardchumais scagtha "
-"chun príobháideacht a fheabhsú, sonraí leathanaigh ghréasáin agus ceanntásca "
-"HTTP a mhodhnú, rochtain a rialú, agus fógraí agus bruscar Idirlín "
-"dochreidte eile a bhaint."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr "Léithe/Athléigh comhad log"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Show I/O status"
msgstr "Taispeáin stádas I/O"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status"
msgstr "Taispeáin gach stádas nasc"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing"
msgstr "Taispeáin parsáil ceanntásc"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr "Níl an pacáiste bogearraí '%s' suiteáilte."
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr "Tá pacáiste bogearraí '%s' as dáta."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "Tosaigh"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
+msgid "Single Threaded"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr "Tos/ Stop"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
+msgid "Socket timeout"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr "Tos/Stop Privoxy WEB Proxy"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
+msgid "Split large forms"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Startup banner and warnings."
msgstr "Meirge tosaithe agus rabhaidh."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
msgid "Syntax:"
msgstr "Comhréir:"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces."
msgstr "Comhréir: Ainmneacha ceanntásc cliant atá teoranta ag spásanna."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
+msgid ""
+"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]"
msgstr "Comhréir: target_pattern http_parent [:port]"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
+msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System"
msgstr "Córas"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
+msgid "Template Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
+msgid "Temporary Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
"An comhad (í) gníomhartha atá le húsáid. Ceadaítear línte comhad "
"gníomhaíochtaí iolracha, agus moltar iad i ndáiríre!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
"An seoladh agus an calafort TCP ar éisteoidh Privoxy le hiarratais ar "
"chliaint."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
"An leibhéal comhbhrúite a chuirtear chuig an leabharlann zlib agus ábhar "
"maolaithe á gcomhbhrú."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
+"located).<br />No trailing \"/\", please."
msgstr ""
-"An eolaire ina ndéantar gach logáil (ie áit a bhfuil an logfile suite)."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located."
msgstr "An eolaire ina bhfuil na comhaid chumraíochta eile suite."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
"Tá rialacha modhnaithe ábhair sna comhaid scagaire a úsáideann nathanna "
"rialta."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages."
msgstr "An t-ainm óstach a thaispeántar ar na leathanaigh CGI."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory."
msgstr ""
"An comhad logála le húsáid. Ainm comhaid, i gcoibhneas le eolaire logála."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
"An t-ord ina ndéantar ceanntásca cliant a shórtáil sula gcuirtear iad ar "
"aghaidh."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
"Filleann an cód stádais Privoxy le haghaidh leathanaigh atá blocáilte "
"len+handle-as-empty-document."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
"Is gné thurgnamhach é an mheicníocht iontaobhais chun liostaí bána a thógáil "
"agus ba chóir í a úsáid go cúramach."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-"Ní mór luach an rogha seo ach má tá an mheicníocht iontaobhais turgnamhach "
-"gníomhachtaithe."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
"Níl an rogha seo ann ach chun críocha dífhabhtaithe. Laghdóidh sé "
"feidhmíocht go suntasach."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
"Bainfear an rogha seo in eisiúintí amach anseo toisc go bhfuil na clibeoirí "
"ceanntásc níos ginearálta tar éis é a chur in iúl."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
"Rialaíonn an cluaisín seo na gnéithe atá ábhartha do shlándáil de "
"chumraíocht Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
"Tríd an seachfhreastalaí SOCKS (agus go roghnach cén tuismitheoir "
"seachfhreastalaí HTTP) ba cheart iarratais ar leith a threorú."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr ""
"Cé na hiarratais shainiúla seachfhreastalaí HTTP chucu ar cheart iad a "
"threorú."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
+msgid "Toggle Status"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
+msgid "Tolerate pipelining"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
+msgid "Trust Info URL"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
+msgid "Trust file"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
+msgid ""
+"URL shown if access to an untrusted page is denied. Only applies if trust "
+"mechanism is enabled."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
+msgid "URL to documentation about the local Privoxy setup."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
+msgid "User Manual"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
msgid "User customizations"
msgstr "Saincheaptha úsáideora"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr "Ní uimhir í an luach"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr "Luach nach bhfuil idir 0 agus 300"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr "Luach nach bhfuil idir 0 agus 9"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr "Luach nach bhfuil idir 1 agus 4096"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr "Luach nach mó 0 nó folamh"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr "Raon luacha 1 go 4096, gan aon réamhshocruithe iontrála go 4096"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "Leagan"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr "Eolas Leagan"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
msgid "Whether intercepted requests should be treated as valid."
msgstr "Cibé an gcaithfear le hiarratais idirghabháilte mar bhailí."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
"Cibé an aithníonn Privoxy ceanntásca HTTP speisialta nó nach bhfuil chun "
"stát toggle a athrú."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery."
msgstr ""
"Cibé an bhfuil ábhar maolaithe comhbhrúite nó nach bhfuil roimh sheachadadh."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
"Ba chóir naisc imeachta a choinneáil beo a roinnt idir naisc éagsúla atá ag "
"teacht isteach nó nach bhfuil."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served."
msgstr "Cibé acu ba chóir iarratais píblínte a sheirbheáil nó nach bhfuil."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr ""
"Cibé ar cheart nó nár cheart go n-oibreodh fíordheimhniú seachfhreastalaí "
"trí Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used."
msgstr ""
"Cibé an féidir eagarthóir comhad gníomhartha bunaithe ar an ngréasán a úsáid "
"nó nach féidir."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used."
msgstr ""
"Cibé an féidir an ghné toggle bunaithe ar an ngréasán a úsáid nó nach féidir."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
"Cibé an féidir iarratais chuig leathanaigh CGI Privoxy a bhac nó a atreorú."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
"Cibé an chóir don chomhéadan CGI fanacht comhoiriúnach le cliaint HTTP "
"briste."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread."
msgstr "Cibé acu ach snáithe freastalaí amháin a reáchtáil."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what."
msgstr "Cé atá in ann rochtain a fháil ar cad."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr "suiteáilte"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr "nó níos airde"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr "riachtanach"
+#~ msgid ""
+#~ "A URL to be displayed in the error page that users will see if access to "
+#~ "an untrusted page is denied."
+#~ msgstr ""
+#~ "URL le taispeáint sa leathanach earráide a fheicfidh úsáideoirí má "
+#~ "dhiúltaítear rochtain ar leathanach neamhiontaofa."
+
+#~ msgid ""
+#~ "A URL to documentation about the local Privoxy setup, configuration or "
+#~ "policies."
+#~ msgstr ""
+#~ "URL chun doiciméadú faoi shocrú, cumraíocht nó beartais áitiúil Privoxy."
+
+#~ msgid "A directory where Privoxy can create temporary files."
+#~ msgstr "Eolaire inar féidir le Privoxy comhaid shealadacha a chruthú."
+
+#~ msgid "An alternative directory where the templates are loaded from."
+#~ msgstr "Eolaire malartach áit a luchtaítear na teimpléid."
+
+#~ msgid "An email address to reach the Privoxy administrator."
+#~ msgstr "Seoladh ríomhphoist chun riarthóir Privoxy a bhaint amach."
+
+#~ msgid ""
+#~ "Configure here the routing of HTTP requests through a chain of multiple "
+#~ "proxies. Note that parent proxies can severely decrease your privacy "
+#~ "level. Also specified here are SOCKS proxies."
+#~ msgstr ""
+#~ "Cumraigh anseo ródú iarratais HTTP trí slabhra iolracha seachfhreastaí. "
+#~ "Tabhair faoi deara gur féidir le seachfhreastóirí tuismitheoirí do "
+#~ "leibhéal príobháideachta Sonraítear anseo freisin tá seachfhálaí SOCKS."
+
+#~ msgid "Delay (in seconds) during system boot before Privoxy start"
+#~ msgstr ""
+#~ "Moill (i soicindí) le linn tosaithe an chórais sula dtosaíonn Privoxy"
+
+#~ msgid "Directory does not exist!"
+#~ msgstr "Níl Eolaire ann!"
+
+#~ msgid "During delay ifup-events are not monitored !"
+#~ msgstr "Le linn moill ní dhéantar monatóireacht ar imeachtaí ifup!"
+
+#~ msgid ""
+#~ "Enable/Disable autostart of Privoxy on system startup and interface events"
+#~ msgstr ""
+#~ "Cumasach/Díchumasaigh uathosú Privoxy ar imeachtaí tosaithe agus "
+#~ "comhéadain an chórais"
+
+#~ msgid "File '%s' not found inside Configuration Directory"
+#~ msgstr "Níor aimsíodh comhad '%s' taobh istigh de Eolaire Cumraíochta"
+
+#~ msgid "File not found or empty"
+#~ msgstr "Níor aimsíodh comhad nó folamh"
+
+#~ msgid "For help use link at the relevant option"
+#~ msgstr "Le haghaidh cabhrach bain úsáid as an nasc ag an rogha ábhartha"
+
+#~ msgid ""
+#~ "If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+#~ "should not be able to bypass any blocks."
+#~ msgstr ""
+#~ "Má tá sé cumasaithe, folaíonn Privoxy an nasc ‘téigh ann ar aon nós’. Is "
+#~ "léir nár cheart go mbeadh an t-úsáideoir in ann aon bhloc a sheachbhóthar."
+
+#~ msgid "Invalid email address"
+#~ msgstr "Seoladh ríomhphoist neam"
+
+#~ msgid "Log File Viewer"
+#~ msgstr "Breathnóir Comhad Logála"
+
+#~ msgid "Logging"
+#~ msgstr "Logáil"
+
+#~ msgid "Mandatory Input: No Data given!"
+#~ msgstr "Ionchur Éigeantach: Níl aon Sonraí tugtha!"
+
+#~ msgid "Mandatory Input: No Directory given!"
+#~ msgstr "Ionchur Éigeantach: Níl aon Eolaire tugtha!"
+
+#~ msgid "Mandatory Input: No Port given!"
+#~ msgstr "Ionchur Éigeantach: Níl aon Port tugtha!"
+
+#~ msgid "Mandatory Input: No files given!"
+#~ msgstr "Ionchur Éigeantach: Níl aon chomhaid tugtha!"
+
+#~ msgid "Mandatory Input: No valid IPv4 address or host given!"
+#~ msgstr "Ionchur Éigeantach: Níl aon seoladh nó óstach bailí IPv4 tugtha!"
+
+#~ msgid "Mandatory Input: No valid IPv6 address given!"
+#~ msgstr "Ionchur Éigeantach: Níl aon seoladh bailí IPv6 tugtha!"
+
+#~ msgid "Mandatory Input: No valid Port given!"
+#~ msgstr "Ionchur Éigeantach: Níl aon Port bailí tugtha!"
+
+#~ msgid "Miscellaneous"
+#~ msgstr "Ilghnéireach"
+
+#~ msgid "NOT installed"
+#~ msgstr "NÍL suiteáilte"
+
+#~ msgid "No trailing '/', please."
+#~ msgstr "Gan aon leanúint '/', le do thoil."
+
+#~ msgid ""
+#~ "Only when using 'external filters', Privoxy has to create temporary files."
+#~ msgstr ""
+#~ "Ní mór do Privoxy comhaid shealadacha a chruthú ach amháin nuair a bhíonn "
+#~ "'scagairí seachtracha á n-úsáid agat."
+
+#~ msgid "Please install current version !"
+#~ msgstr "Suiteáil an leagan reatha le do thoil!"
+
+#~ msgid "Please press [Read] button"
+#~ msgstr "Brúigh [Léigh] cnaipe le do thoil"
+
+#~ msgid "Please update to the current version!"
+#~ msgstr "Nuashonraigh an leagan reatha le do thoil!"
+
+#~ msgid ""
+#~ "Privoxy is a non-caching web proxy with advanced filtering capabilities "
+#~ "for enhancing privacy, modifying web page data and HTTP headers, "
+#~ "controlling access, and removing ads and other obnoxious Internet junk."
+#~ msgstr ""
+#~ "Is seachfhreastalaí gréasáin neamh-chaching é Privoxy le hardchumais "
+#~ "scagtha chun príobháideacht a fheabhsú, sonraí leathanaigh ghréasáin agus "
+#~ "ceanntásca HTTP a mhodhnú, rochtain a rialú, agus fógraí agus bruscar "
+#~ "Idirlín dochreidte eile a bhaint."
+
+#~ msgid "Read / Reread log file"
+#~ msgstr "Léithe/Athléigh comhad log"
+
+#~ msgid "Software package '%s' is not installed."
+#~ msgstr "Níl an pacáiste bogearraí '%s' suiteáilte."
+
+#~ msgid "Software package '%s' is outdated."
+#~ msgstr "Tá pacáiste bogearraí '%s' as dáta."
+
+#~ msgid "Start"
+#~ msgstr "Tosaigh"
+
+#~ msgid "Start / Stop"
+#~ msgstr "Tos/ Stop"
+
+#~ msgid "Start/Stop Privoxy WEB Proxy"
+#~ msgstr "Tos/Stop Privoxy WEB Proxy"
+
+#~ msgid ""
+#~ "The directory where all logging takes place (i.e. where the logfile is "
+#~ "located)."
+#~ msgstr ""
+#~ "An eolaire ina ndéantar gach logáil (ie áit a bhfuil an logfile suite)."
+
+#~ msgid ""
+#~ "The value of this option only matters if the experimental trust mechanism "
+#~ "has been activated."
+#~ msgstr ""
+#~ "Ní mór luach an rogha seo ach má tá an mheicníocht iontaobhais "
+#~ "turgnamhach gníomhachtaithe."
+
+#~ msgid "Value is not a number"
+#~ msgstr "Ní uimhir í an luach"
+
+#~ msgid "Value not between 0 and 300"
+#~ msgstr "Luach nach bhfuil idir 0 agus 300"
+
+#~ msgid "Value not between 0 and 9"
+#~ msgstr "Luach nach bhfuil idir 0 agus 9"
+
+#~ msgid "Value not between 1 and 4096"
+#~ msgstr "Luach nach bhfuil idir 1 agus 4096"
+
+#~ msgid "Value not greater 0 or empty"
+#~ msgstr "Luach nach mó 0 nó folamh"
+
+#~ msgid "Version"
+#~ msgstr "Leagan"
+
+#~ msgid "Version Information"
+#~ msgstr "Eolas Leagan"
+
+#~ msgid "installed"
+#~ msgstr "suiteáilte"
+
+#~ msgid "or higher"
+#~ msgstr "nó níos airde"
+
+#~ msgid "required"
+#~ msgstr "riachtanach"
+++ /dev/null
-msgid ""
-msgstr ""
-"Language: he\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
-msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
-msgid "Access Control"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
-msgid "Actions that are applied to all sites and maybe overruled later on."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
-msgid ""
-"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
-"server."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
-msgid "Boot delay"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
-msgid "CGI user interface"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
-msgid "Common Log Format"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
-msgid "Debug GIF de-animation"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
-msgid "Debug force feature"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
-msgid "Debug redirects"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
-msgid "Debug regular expression filters"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
-msgid "Disabled == Transparent Proxy Mode"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
-msgid "Documentation"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
-msgid "Enable proxy authentication forwarding"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
-msgid "Enable/Disable filtering when Privoxy starts."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
-msgid "Enabled"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
-msgid ""
-"Enabling this option is NOT recommended if there is no parent proxy that "
-"requires authentication!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
-msgid "Files and Directories"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
-msgid "Forwarding"
-msgstr ""
-
-#: applications/luci-app-privoxy/root/usr/share/rpcd/acl.d/luci-app-privoxy.json:3
-msgid "Grant UCI access for luci-app-privoxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
-msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
-"should not be able to bypass any blocks."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
-msgid ""
-"If you intend to operate Privoxy for more users than just yourself, it might "
-"be a good idea to let them know how to reach you, what you block and why you "
-"do that, your policies, etc."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
-msgid "It is NOT recommended for the casual user."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
-msgid "Location of the Privoxy User Manual."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
-msgid "Log all data read from the network"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
-msgid "Log all data written to the network"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
-msgid "Log the applying actions"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
-msgid ""
-"Log the destination for each request Privoxy let through. See also 'Debug "
-"1024'."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
-msgid ""
-"Log the destination for requests Privoxy didn't let through, and the reason "
-"why."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
-msgid "Main actions file"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
-msgid "Mandatory Input: No File given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
-msgid "Maximum number of client connections that will be served."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
-msgid "Maximum size (in KB) of the buffer for content filtering."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
-msgid "Non-fatal errors - *we highly recommended enabling this*"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
-msgid ""
-"Number of seconds after which a socket times out if no data is received."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
-msgid ""
-"Number of seconds after which an open connection will no longer be reused."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
-msgid "Please read Privoxy manual for details!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
-msgid "Privoxy WEB proxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
-msgid ""
-"Privoxy can (and normally does) use a number of other files for additional "
-"configuration, help and logging. This section of the configuration file "
-"tells Privoxy where to find those other files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
-msgid "Show I/O status"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
-msgid "Show each connection status"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
-msgid "Show header parsing"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
-msgid "Startup banner and warnings."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
-msgid "Syntax:"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
-msgid "Syntax: Client header names delimited by spaces."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
-msgid "Syntax: target_pattern http_parent[:port]"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
-msgid "System"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
-msgid ""
-"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
-"are in fact recommended!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
-msgid ""
-"The address and TCP port on which Privoxy will listen for client requests."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
-msgid ""
-"The compression level that is passed to the zlib library when compressing "
-"buffered content."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
-msgid ""
-"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
-msgid "The directory where the other configuration files are located."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
-msgid ""
-"The filter files contain content modification rules that use regular "
-"expressions."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
-msgid "The hostname shown on the CGI pages."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
-msgid "The log file to use. File name, relative to log directory."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
-msgid "The order in which client headers are sorted before forwarding them."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
-msgid ""
-"The status code Privoxy returns for pages blocked with +handle-as-empty-"
-"document."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
-msgid ""
-"The trust mechanism is an experimental feature for building white-lists and "
-"should be used with care."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
-msgid ""
-"This option is only there for debugging purposes. It will drastically reduce "
-"performance."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
-msgid ""
-"This option will be removed in future releases as it has been obsoleted by "
-"the more general header taggers."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
-msgid ""
-"This tab controls the security-relevant aspects of Privoxy's configuration."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
-msgid ""
-"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
-"specific requests should be routed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
-msgid "To which parent HTTP proxy specific requests should be routed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
-msgid "User customizations"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
-msgid "Value range 1 to 4096, no entry defaults to 4096"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
-msgid "Whether intercepted requests should be treated as valid."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
-msgid ""
-"Whether or not Privoxy recognizes special HTTP headers to change toggle "
-"state."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
-msgid "Whether or not buffered content is compressed before delivery."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
-msgid ""
-"Whether or not outgoing connections that have been kept alive should be "
-"shared between different incoming connections."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
-msgid "Whether or not pipelined requests should be served."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
-msgid "Whether or not proxy authentication through Privoxy should work."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
-msgid "Whether or not the web-based actions file editor may be used."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
-msgid "Whether or not the web-based toggle feature may be used."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
-msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
-msgid ""
-"Whether the CGI interface should stay compatible with broken HTTP clients."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
-msgid "Whether to run only one server thread."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
-msgid "Who can access what."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr ""
"Plural-Forms: nplurals=2; plural=(n==0 || n==1);\n"
"X-Generator: Weblate 4.12-dev\n"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
+"A directory where Privoxy can create temporary files.<br /><strong>Only when "
+"using 'external filters', Privoxy has to create temporary files.</strong>"
msgstr ""
-"त्रुटि पृष्ठ में प्रदर्शित होने वाला URL जिसे उपयोगकर्ता यह देखेगा कि किसी अप्रमाणित पृष्ठ "
-"तक पहुँच अस्वीकृत है।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
-msgstr "स्थानीय Privoxy सेटअप, कॉन्फ़िगरेशन या नीतियों के बारे में प्रलेखन के लिए एक URL।"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr "एक निर्देशिका जहाँ Privoxy अस्थायी फ़ाइलें बना सकती है।"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
+msgid "Accept intercepted requests"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "Access Control"
msgstr "पहुँच नियंत्रण"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
+msgid "Action Files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr "सभी साइट पर लागू होने वाले कार्य और शायद बाद में ओवरराइड किए गए।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr "एक वैकल्पिक निर्देशिका जहाँ से टेम्प्लेट लोड किए जाते हैं।"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
+msgid "Admin Email"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr "प्रिविक्सी व्यवस्थापक तक पहुंचने के लिए एक ईमेल पता।"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
+msgid "Allow CGI request crunching"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
+msgid ""
+"An alternative directory where the templates are loaded from.<br />No "
+"trailing \"/\", please."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
"यदि सर्वर द्वारा निर्दिष्ट नहीं किया गया है तो सर्वर-साइड कीप-आउट टाइम-आउट टाइम-सेकंड "
"(सेकंड में) मान लें।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay"
msgstr "बूट में देरी"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
+msgid "Buffer Limit"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface"
msgstr "सीजीआई यूजर इंटरफेस"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
+msgid "Client header order"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format"
msgstr "सामान्य लॉग प्रारूप"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
+msgid "Compression level"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
+msgid "Configuration Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
+msgid "Configure the Privoxy proxy daemon settings."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
+msgid "Connection sharing"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
+msgid "Debug 1"
msgstr ""
-"यहाँ कई प्रॉक्सी की एक श्रृंखला के माध्यम से HTTP अनुरोधों के मार्ग को कॉन्फ़िगर करें। ध्यान दें "
-"कि माता-पिता की निकटता आपके गोपनीयता स्तर को गंभीर रूप से कम कर सकती है। यहाँ भी "
-"निर्दिष्ट SOCKS परदे के पीछे हैं।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
+msgid "Debug 1024"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
+msgid "Debug 128"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
+msgid "Debug 16"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
+msgid "Debug 2"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
+msgid "Debug 2048"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
+msgid "Debug 256"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
+msgid "Debug 32"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
+msgid "Debug 32768"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
+msgid "Debug 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
+msgid "Debug 4096"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
+msgid "Debug 512"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
+msgid "Debug 64"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
+msgid "Debug 65536"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
+msgid "Debug 8"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
+msgid "Debug 8192"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation"
msgstr "डीबग GIF डे-एनीमेशन"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature"
msgstr "डीबग बल सुविधा"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects"
msgstr "डिबग पुनर्निर्देश"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters"
msgstr "नियमित एक्सप्रेशन फ़िल्टर डीबग करें"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
-msgstr "प्रिविक्सी शुरू होने से पहले सिस्टम बूट के दौरान देरी (सेकंड में)"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
+msgid "Default server timeout"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr "निर्देशिका मौजूद नहीं है!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
+msgid "Delay (in seconds) during system boot before Privoxy starts."
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
+msgid "Deny access"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode"
msgstr "अक्षम == पारदर्शी प्रॉक्सी मोड"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "Documentation"
msgstr "प्रलेखन"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr "देरी के दौरान ifup- घटनाओं पर नजर नहीं रखी जाती है!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
+msgid "Email address for the Privoxy administrator."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
+msgid "Enable action file editor"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
+msgid "Enable compression"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding"
msgstr "प्रॉक्सी प्रमाणीकरण सक्षम करें अग्रेषण"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
-msgstr "सिस्टम स्टार्टअप और इंटरफ़ेस घटनाओं पर Privoxy के ऑटोटार्ट को सक्षम / अक्षम करें"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
+msgid "Enable remote toggle"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
+msgid "Enable remote toggle via HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
+msgid "Enable/Disable autostart of Privoxy"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts."
msgstr "Privoxy प्रारंभ होने पर फ़िल्टरिंग अक्षम / सक्षम करें।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled"
msgstr "सक्रिय"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
"यदि माता-पिता प्रॉक्सी को प्रमाणीकरण की आवश्यकता नहीं है, तो इस विकल्प को सक्षम करने "
"की अनुशंसा नहीं की जाती है!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr "कॉन्फ़िगरेशन निर्देशिका के अंदर फ़ाइल '% s' नहीं मिली"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr "फ़ाइल नहीं मिली या खाली नहीं है"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
+msgid "Enforce page blocking"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid "Files and Directories"
msgstr "फ़ाइलें और निर्देशिकाएँ"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr "मदद के लिए संबंधित विकल्प पर लिंक का उपयोग करें"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
+msgid "Filter files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
+msgid "Forward HTTP"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
+msgid "Forward SOCKS 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
+msgid "Forward SOCKS 4A"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
+msgid "Forward SOCKS 5"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
+msgid "Forward SOCKS 5t"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding"
msgstr "अग्रेषित करन"
msgid "Grant UCI access for luci-app-privoxy"
msgstr "UCI को luci-app-privoxy कि अनुमति प्रदान करें"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
+msgid "Handle as empty doc returns ok"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+"If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
-"यदि सक्षम किया गया है, तो प्रिविओकी 'वैसे भी वहां जाएं' लिंक को छुपाता है। उपयोगकर्ता "
-"को स्पष्ट रूप से किसी भी ब्लॉक को बायपास करने में सक्षम नहीं होना चाहिए।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"यह एक अच्छा विचार हो सकता है कि उन्हें यह बताने का मौका दें कि आप तक कैसे पहुंचें, आप क्या "
"ब्लॉक करते हैं और आप ऐसा क्यों करते हैं, आपकी नीतियां, आदि।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr "अमान्य ईमेल पता"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
msgid "It is NOT recommended for the casual user."
msgstr "यह आकस्मिक उपयोगकर्ता के लिए अनुशंसित नहीं है।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
+msgid "Keep-alive timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
+msgid "Listen addresses"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual."
msgstr "प्रिविक्सी यूजर मैनुअल का स्थान।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr "लॉग फ़ाइल व्यूअर"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
+msgid "Log Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
+msgid "Log File"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network"
msgstr "नेटवर्क से पढ़े गए सभी डेटा को लॉग करें"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network"
msgstr "नेटवर्क पर लिखे गए सभी डेटा को लॉग इन करें"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions"
msgstr "आवेदन क्रियाओं को लॉग इन करें"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
msgstr "प्रत्येक अनुरोध के लिए गंतव्य लॉग इन करें। 'डिबग 1024' भी देखें।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
msgstr "अनुरोधों के लिए गंतव्य को लॉग इन करें Privoxy ने ऐसा नहीं होने दिया, और कारण।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr "लॉगिंग"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Main actions file"
msgstr "मुख्य कार्रवाई फ़ाइल"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr "अनिवार्य इनपुट: कोई डेटा नहीं दिया गया है!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr "अनिवार्य इनपुट: कोई निर्देशिका नहीं दी गई है!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No File given!"
msgstr "अनिवार्य इनपुट: कोई फ़ाइल नहीं दी गई!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr "अनिवार्य इनपुट: कोई पोर्ट नहीं दिया गया!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr "अनिवार्य इनपुट: नहीं दी गई फाइलें!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
-msgstr "अनिवार्य इनपुट: कोई मान्य IPv4 पता या होस्ट नहीं दिया गया है!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr "अनिवार्य इनपुट: कोई मान्य IPv6 पता नहीं दिया गया है!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr "अनिवार्य इनपुट: कोई मान्य पोर्ट नहीं दिया गया है!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
+msgid "Max. client connections"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
msgid "Maximum number of client connections that will be served."
msgstr "अधिकतम ग्राहक कनेक्शन जो परोसे जाएंगे।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr "सामग्री फ़िल्टरिंग के लिए बफर का अधिकतम आकार (KB में)।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr "कई तरह का"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr "स्थापित नहीं है"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr "कोई अनुगामी '/', कृपया।"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
+msgid "Misc"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr "गैर-घातक त्रुटियां - * हमने इसे सक्षम करने की अत्यधिक अनुशंसा की *"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr "यदि कोई डेटा प्राप्त नहीं होता है तो सॉकेट समय के बाद सेकंड की संख्या।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr "सेकंड की संख्या जिसके बाद एक खुला कनेक्शन अब पुन: उपयोग नहीं किया जाएगा।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
+msgid "Permit access"
msgstr ""
-"केवल 'बाहरी फिल्टर' का उपयोग करते समय, प्रिविक्सी को अस्थायी फाइलें बनानी होती हैं।"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr "कृपया वर्तमान संस्करण स्थापित करें!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr "कृपया [पढ़ें] बटन दबाएं"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Please read Privoxy manual for details!"
msgstr "कृपया विवरण के लिए Privoxy मैनुअल पढ़ें!"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr "कृपया वर्तमान संस्करण में अपडेट करें!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
+msgid "Privoxy"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
+msgid "Privoxy Settings"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
+#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy"
msgstr "Privoxy वेब प्रॉक्सी"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"सकता है (और सामान्य रूप से करता है)। कॉन्फ़िगरेशन फ़ाइल का यह खंड प्रिविक्सी को बताता है "
"कि उन अन्य फ़ाइलों को कहाँ खोजना है।"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
+msgid "Proxy Info URL"
msgstr ""
-"प्रिविक्सी गोपनीयता को बढ़ाने, वेब पेज डेटा और HTTP हेडर को संशोधित करने, पहुंच को "
-"नियंत्रित करने और विज्ञापनों और अन्य अप्रिय इंटरनेट कबाड़ को हटाने के लिए उन्नत फ़िल्टरिंग "
-"क्षमताओं के साथ एक गैर-कैशिंग वेब प्रॉक्सी है।"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr "पढ़ें / लॉग फ़ाइल पुनः चलाएँ"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Show I/O status"
msgstr "I / O स्थिति दिखाएं"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status"
msgstr "प्रत्येक कनेक्शन की स्थिति दिखाएं"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing"
msgstr "हेडर पार्सिंग दिखाएं"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr "सॉफ़्टवेयर पैकेज '%s' स्थापित नहीं है।"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr "सॉफ्टवेयर पैकेज '%s' पुराना है।"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "शुरु"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
+msgid "Single Threaded"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr "चालू / बंद"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
+msgid "Socket timeout"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr "Privoxy WEB प्रॉक्सी शुरू / बंद करें"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
+msgid "Split large forms"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Startup banner and warnings."
msgstr "स्टार्टअप बैनर और चेतावनी।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
msgid "Syntax:"
msgstr "वाक्य - विन्यास:"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces."
msgstr "सिंटैक्स: क्लाइंट हेडर नाम रिक्त स्थान द्वारा सीमांकित।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
+msgid ""
+"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]"
msgstr "सिंटैक्स: target_pattern http_parent [:port]"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
+msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System"
msgstr "प्रणाली"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
+msgid "Template Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
+msgid "Temporary Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
"क्रियाएँ फ़ाइल (ओं) का उपयोग करने के लिए। एकाधिक एक्शनफाइल लाइनों की अनुमति है, और "
"वास्तव में अनुशंसित हैं!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr "पता और टीसीपी पोर्ट जिस पर प्रिविक्स क्लाइंट अनुरोधों के लिए सुनेंगे।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
msgstr "कंप्रेशन लेवल जो बफर कंटेंट को कंप्रेस करते हुए zlib लाइब्रेरी को दिया जाता है।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
-msgstr "वह निर्देशिका जहाँ सभी लॉगिंग होती है (यानी जहाँ लॉगफ़ाइल स्थित है)।"
+"located).<br />No trailing \"/\", please."
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located."
msgstr "वह निर्देशिका जहां अन्य कॉन्फ़िगरेशन फ़ाइलें स्थित हैं।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
msgstr ""
"फ़िल्टर फ़ाइलों में सामग्री संशोधन नियम होते हैं जो नियमित अभिव्यक्ति का उपयोग करते हैं।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages."
msgstr "होस्टनाम सीजीआई पृष्ठों पर दिखाया गया है।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory."
msgstr "लॉग फ़ाइल का उपयोग करने के लिए। फ़ाइल नाम, लॉग निर्देशिका के सापेक्ष।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them."
msgstr "जिस क्रम में क्लाइंट हेडर को अग्रेषित करने से पहले क्रमबद्ध किया जाता है।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
msgstr "स्थिति कोड Privoxy + संभाल-के-खाली-दस्तावेज़ के साथ अवरुद्ध पृष्ठों के लिए देता है।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
"ट्रस्ट तंत्र सफेद-सूचियों के निर्माण के लिए एक प्रायोगिक विशेषता है और इसका उपयोग देखभाल के "
"साथ किया जाना चाहिए।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-"इस विकल्प का मूल्य केवल तभी मायने रखता है जब प्रयोगात्मक ट्रस्ट तंत्र सक्रिय हो गया हो।"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
msgstr "यह विकल्प केवल डीबगिंग उद्देश्यों के लिए है। यह प्रदर्शन को काफी कम कर देगा।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
"यह विकल्प भविष्य के रिलीज में हटा दिया जाएगा क्योंकि यह अधिक सामान्य हेडर टैगर्स द्वारा "
"पालन किया गया है।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr "यह टैब प्रिविक्सी के कॉन्फ़िगरेशन के सुरक्षा-प्रासंगिक पहलुओं को नियंत्रित करता है।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
"जिसके माध्यम से SOCKS प्रॉक्सी (और वैकल्पिक रूप से किस पैरेंट HTTP प्रॉक्सी के लिए) विशेष "
"अनुरोधों को रूट किया जाना चाहिए।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr "माता-पिता के लिए HTTP प्रॉक्सी विशिष्ट अनुरोधों को रूट किया जाना चाहिए।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
+msgid "Toggle Status"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
+msgid "Tolerate pipelining"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
+msgid "Trust Info URL"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
+msgid "Trust file"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
+msgid ""
+"URL shown if access to an untrusted page is denied. Only applies if trust "
+"mechanism is enabled."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
+msgid "URL to documentation about the local Privoxy setup."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
+msgid "User Manual"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
msgid "User customizations"
msgstr "उपयोगकर्ता अनुकूलन"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr "मान एक संख्या नहीं है"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr "मान 0 और 300 के बीच नहीं"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr "मान 0 और 9 के बीच नहीं"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr "मान 1 और 4096 के बीच नहीं"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr "मान 0 या खाली नहीं है"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr "मूल्य सीमा 1 से 4096, नो एंट्री डिफॉल्ट्स टू 4096"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "संस्करण"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr "संस्करण जानकारी"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
msgid "Whether intercepted requests should be treated as valid."
msgstr "क्या इंटरसेप्टेड अनुरोधों को वैध माना जाना चाहिए।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
msgstr "Privoxy टॉगल स्थिति को बदलने के लिए विशेष HTTP हेडर को पहचानती है या नहीं।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery."
msgstr "डिलीवरी से पहले बफ़र्ड कंटेंट को कंप्रेस किया जाता है या नहीं।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
"आउटगोइंग कनेक्शन जिन्हें जीवित रखा गया है या नहीं, उन्हें विभिन्न आवक कनेक्शनों के बीच साझा "
"किया जाना चाहिए।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served."
msgstr "पाइपलाइन किए गए अनुरोधों को सेवा दी जानी चाहिए या नहीं।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr "प्रिविक्सी के माध्यम से प्रॉक्सी प्रमाणीकरण काम करना चाहिए या नहीं।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used."
msgstr "वेब-आधारित क्रिया फ़ाइल संपादक का उपयोग किया जा सकता है या नहीं।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used."
msgstr "वेब-आधारित टॉगल सुविधा का उपयोग किया जा सकता है या नहीं।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
"क्या प्रिविक्सी के CGI पृष्ठों के अनुरोधों को अवरुद्ध या पुनर्निर्देशित किया जा सकता है।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr "क्या सीजीआई इंटरफ़ेस टूटे हुए HTTP क्लाइंट के साथ संगत रहना चाहिए।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread."
msgstr "केवल एक सर्वर थ्रेड को चलाना है या नहीं।"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what."
msgstr "कौन पहुंच सकता है क्या।"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr "स्थापित"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr "या ऊँचा"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr "अपेक्षित"
+#~ msgid ""
+#~ "A URL to be displayed in the error page that users will see if access to "
+#~ "an untrusted page is denied."
+#~ msgstr ""
+#~ "त्रुटि पृष्ठ में प्रदर्शित होने वाला URL जिसे उपयोगकर्ता यह देखेगा कि किसी अप्रमाणित "
+#~ "पृष्ठ तक पहुँच अस्वीकृत है।"
+
+#~ msgid ""
+#~ "A URL to documentation about the local Privoxy setup, configuration or "
+#~ "policies."
+#~ msgstr ""
+#~ "स्थानीय Privoxy सेटअप, कॉन्फ़िगरेशन या नीतियों के बारे में प्रलेखन के लिए एक URL।"
+
+#~ msgid "A directory where Privoxy can create temporary files."
+#~ msgstr "एक निर्देशिका जहाँ Privoxy अस्थायी फ़ाइलें बना सकती है।"
+
+#~ msgid "An alternative directory where the templates are loaded from."
+#~ msgstr "एक वैकल्पिक निर्देशिका जहाँ से टेम्प्लेट लोड किए जाते हैं।"
+
+#~ msgid "An email address to reach the Privoxy administrator."
+#~ msgstr "प्रिविक्सी व्यवस्थापक तक पहुंचने के लिए एक ईमेल पता।"
+
+#~ msgid ""
+#~ "Configure here the routing of HTTP requests through a chain of multiple "
+#~ "proxies. Note that parent proxies can severely decrease your privacy "
+#~ "level. Also specified here are SOCKS proxies."
+#~ msgstr ""
+#~ "यहाँ कई प्रॉक्सी की एक श्रृंखला के माध्यम से HTTP अनुरोधों के मार्ग को कॉन्फ़िगर करें। "
+#~ "ध्यान दें कि माता-पिता की निकटता आपके गोपनीयता स्तर को गंभीर रूप से कम कर सकती है। "
+#~ "यहाँ भी निर्दिष्ट SOCKS परदे के पीछे हैं।"
+
+#~ msgid "Delay (in seconds) during system boot before Privoxy start"
+#~ msgstr "प्रिविक्सी शुरू होने से पहले सिस्टम बूट के दौरान देरी (सेकंड में)"
+
+#~ msgid "Directory does not exist!"
+#~ msgstr "निर्देशिका मौजूद नहीं है!"
+
+#~ msgid "During delay ifup-events are not monitored !"
+#~ msgstr "देरी के दौरान ifup- घटनाओं पर नजर नहीं रखी जाती है!"
+
+#~ msgid ""
+#~ "Enable/Disable autostart of Privoxy on system startup and interface events"
+#~ msgstr "सिस्टम स्टार्टअप और इंटरफ़ेस घटनाओं पर Privoxy के ऑटोटार्ट को सक्षम / अक्षम करें"
+
+#~ msgid "File '%s' not found inside Configuration Directory"
+#~ msgstr "कॉन्फ़िगरेशन निर्देशिका के अंदर फ़ाइल '% s' नहीं मिली"
+
+#~ msgid "File not found or empty"
+#~ msgstr "फ़ाइल नहीं मिली या खाली नहीं है"
+
+#~ msgid "For help use link at the relevant option"
+#~ msgstr "मदद के लिए संबंधित विकल्प पर लिंक का उपयोग करें"
+
+#~ msgid ""
+#~ "If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+#~ "should not be able to bypass any blocks."
+#~ msgstr ""
+#~ "यदि सक्षम किया गया है, तो प्रिविओकी 'वैसे भी वहां जाएं' लिंक को छुपाता है। "
+#~ "उपयोगकर्ता को स्पष्ट रूप से किसी भी ब्लॉक को बायपास करने में सक्षम नहीं होना चाहिए।"
+
+#~ msgid "Invalid email address"
+#~ msgstr "अमान्य ईमेल पता"
+
+#~ msgid "Log File Viewer"
+#~ msgstr "लॉग फ़ाइल व्यूअर"
+
+#~ msgid "Logging"
+#~ msgstr "लॉगिंग"
+
+#~ msgid "Mandatory Input: No Data given!"
+#~ msgstr "अनिवार्य इनपुट: कोई डेटा नहीं दिया गया है!"
+
+#~ msgid "Mandatory Input: No Directory given!"
+#~ msgstr "अनिवार्य इनपुट: कोई निर्देशिका नहीं दी गई है!"
+
+#~ msgid "Mandatory Input: No Port given!"
+#~ msgstr "अनिवार्य इनपुट: कोई पोर्ट नहीं दिया गया!"
+
+#~ msgid "Mandatory Input: No files given!"
+#~ msgstr "अनिवार्य इनपुट: नहीं दी गई फाइलें!"
+
+#~ msgid "Mandatory Input: No valid IPv4 address or host given!"
+#~ msgstr "अनिवार्य इनपुट: कोई मान्य IPv4 पता या होस्ट नहीं दिया गया है!"
+
+#~ msgid "Mandatory Input: No valid IPv6 address given!"
+#~ msgstr "अनिवार्य इनपुट: कोई मान्य IPv6 पता नहीं दिया गया है!"
+
+#~ msgid "Mandatory Input: No valid Port given!"
+#~ msgstr "अनिवार्य इनपुट: कोई मान्य पोर्ट नहीं दिया गया है!"
+
+#~ msgid "Miscellaneous"
+#~ msgstr "कई तरह का"
+
+#~ msgid "NOT installed"
+#~ msgstr "स्थापित नहीं है"
+
+#~ msgid "No trailing '/', please."
+#~ msgstr "कोई अनुगामी '/', कृपया।"
+
+#~ msgid ""
+#~ "Only when using 'external filters', Privoxy has to create temporary files."
+#~ msgstr ""
+#~ "केवल 'बाहरी फिल्टर' का उपयोग करते समय, प्रिविक्सी को अस्थायी फाइलें बनानी होती हैं।"
+
+#~ msgid "Please install current version !"
+#~ msgstr "कृपया वर्तमान संस्करण स्थापित करें!"
+
+#~ msgid "Please press [Read] button"
+#~ msgstr "कृपया [पढ़ें] बटन दबाएं"
+
+#~ msgid "Please update to the current version!"
+#~ msgstr "कृपया वर्तमान संस्करण में अपडेट करें!"
+
+#~ msgid ""
+#~ "Privoxy is a non-caching web proxy with advanced filtering capabilities "
+#~ "for enhancing privacy, modifying web page data and HTTP headers, "
+#~ "controlling access, and removing ads and other obnoxious Internet junk."
+#~ msgstr ""
+#~ "प्रिविक्सी गोपनीयता को बढ़ाने, वेब पेज डेटा और HTTP हेडर को संशोधित करने, पहुंच को "
+#~ "नियंत्रित करने और विज्ञापनों और अन्य अप्रिय इंटरनेट कबाड़ को हटाने के लिए उन्नत "
+#~ "फ़िल्टरिंग क्षमताओं के साथ एक गैर-कैशिंग वेब प्रॉक्सी है।"
+
+#~ msgid "Read / Reread log file"
+#~ msgstr "पढ़ें / लॉग फ़ाइल पुनः चलाएँ"
+
+#~ msgid "Software package '%s' is not installed."
+#~ msgstr "सॉफ़्टवेयर पैकेज '%s' स्थापित नहीं है।"
+
+#~ msgid "Software package '%s' is outdated."
+#~ msgstr "सॉफ्टवेयर पैकेज '%s' पुराना है।"
+
+#~ msgid "Start"
+#~ msgstr "शुरु"
+
+#~ msgid "Start / Stop"
+#~ msgstr "चालू / बंद"
+
+#~ msgid "Start/Stop Privoxy WEB Proxy"
+#~ msgstr "Privoxy WEB प्रॉक्सी शुरू / बंद करें"
+
+#~ msgid ""
+#~ "The directory where all logging takes place (i.e. where the logfile is "
+#~ "located)."
+#~ msgstr "वह निर्देशिका जहाँ सभी लॉगिंग होती है (यानी जहाँ लॉगफ़ाइल स्थित है)।"
+
+#~ msgid ""
+#~ "The value of this option only matters if the experimental trust mechanism "
+#~ "has been activated."
+#~ msgstr ""
+#~ "इस विकल्प का मूल्य केवल तभी मायने रखता है जब प्रयोगात्मक ट्रस्ट तंत्र सक्रिय हो गया हो।"
+
+#~ msgid "Value is not a number"
+#~ msgstr "मान एक संख्या नहीं है"
+
+#~ msgid "Value not between 0 and 300"
+#~ msgstr "मान 0 और 300 के बीच नहीं"
+
+#~ msgid "Value not between 0 and 9"
+#~ msgstr "मान 0 और 9 के बीच नहीं"
+
+#~ msgid "Value not between 1 and 4096"
+#~ msgstr "मान 1 और 4096 के बीच नहीं"
+
+#~ msgid "Value not greater 0 or empty"
+#~ msgstr "मान 0 या खाली नहीं है"
+
+#~ msgid "Version"
+#~ msgstr "संस्करण"
+
+#~ msgid "Version Information"
+#~ msgstr "संस्करण जानकारी"
+
+#~ msgid "installed"
+#~ msgstr "स्थापित"
+
+#~ msgid "or higher"
+#~ msgstr "या ऊँचा"
+
+#~ msgid "required"
+#~ msgstr "अपेक्षित"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12-dev\n"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
+"A directory where Privoxy can create temporary files.<br /><strong>Only when "
+"using 'external filters', Privoxy has to create temporary files.</strong>"
msgstr ""
-"Azon a hibaoldalon megjelenítendő URL, amelyet a felhasználók akkor fognak "
-"látni, ha egy megbízhatatlan oldalhoz történő hozzáférés megtagadásra kerül."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
+msgid "Accept intercepted requests"
msgstr ""
-"Egy URL a helyi Privoxy beállítással, konfigurációval és házirendekkel "
-"kapcsolatos dokumentációhoz."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr "Egy könyvtár, ahol a Privoxy átmeneti fájlokat hozhat létre."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "Access Control"
msgstr "Hozzáférés-vezérlés"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
+msgid "Action Files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
"Műveletek, amelyek az összes oldalra alkalmazva lesznek, és később talán "
"felülbírálásra kerülnek."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr "Egy alternatív könyvtár, ahonnan a sablonok betöltésre kerülnek."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
+msgid "Admin Email"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr "Egy e-mail cím a Privoxy adminisztrátorának eléréséhez."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
+msgid "Allow CGI request crunching"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
+msgid ""
+"An alternative directory where the templates are loaded from.<br />No "
+"trailing \"/\", please."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
"Feltételezett kiszolgáló oldali életben tartási időkorlát (másodpercben), ha "
"a kiszolgáló nem adta meg."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay"
msgstr "Rendszerindítási késleltetés"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
+msgid "Buffer Limit"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface"
msgstr "CGI felhasználói felület"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
+msgid "Client header order"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format"
msgstr "Gyakori naplóformátum"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
+msgid "Compression level"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
+msgid "Configuration Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
+msgid "Configure the Privoxy proxy daemon settings."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
+msgid "Connection sharing"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
+msgid "Debug"
msgstr ""
-"Itt állítsa be a több proxyláncon keresztüli HTTP kérések útválasztását. Ne "
-"feledje, hogy a szülőproxyk erősen csökkenthetik az adatvédelmi szintet. Itt "
-"adhatók meg a SOCKS proxyk is."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
+msgid "Debug 1"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
+msgid "Debug 1024"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
+msgid "Debug 128"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
+msgid "Debug 16"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
+msgid "Debug 2"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
+msgid "Debug 2048"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
+msgid "Debug 256"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
+msgid "Debug 32"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
+msgid "Debug 32768"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
+msgid "Debug 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
+msgid "Debug 4096"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
+msgid "Debug 512"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
+msgid "Debug 64"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
+msgid "Debug 65536"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
+msgid "Debug 8"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
+msgid "Debug 8192"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation"
msgstr "GIF-animáció megszüntetésének hibakeresése"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature"
msgstr "Kényszerítés funkció hibakeresése"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects"
msgstr "Átirányítások hibakeresése"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters"
msgstr "Reguláris kifejezés szűrőinek hibakeresése"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
+msgid "Default server timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
+msgid "Delay (in seconds) during system boot before Privoxy starts."
msgstr ""
-"Késleltetés (másodpercben) a rendszerindítás közben a Privoxy indulása előtt"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr "A könyvtár nem létezik!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
+msgid "Deny access"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode"
msgstr "Letiltva == transzparens proxy mód"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "Documentation"
msgstr "Dokumentáció"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr "Az ifup események alatti késleltetés nincs megfigyelve!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
+msgid "Email address for the Privoxy administrator."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
+msgid "Enable action file editor"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
+msgid "Enable compression"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding"
msgstr "Proxyhitelesítés továbbításának engedélyezése"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
+msgid "Enable remote toggle"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
+msgid "Enable remote toggle via HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
+msgid "Enable/Disable autostart of Privoxy"
msgstr ""
-"A Privoxy automatikus indításának engedélyezése vagy letiltása a rendszer "
-"indításakor és a csatolóeseményeknél"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts."
msgstr "Szűrés engedélyezése vagy letiltása, ha a Privoxy indul."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled"
msgstr "Engedélyezve"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
"Ennek a beállításnak az engedélyezése NEM ajánlott, ha nincs olyan "
"szülőproxy, amely hitelesítést igényel!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr "A(z) „%s” fájl nem található a beállítási könyvtáron belül"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr "A fájl nem található vagy üres"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
+msgid "Enforce page blocking"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid "Files and Directories"
msgstr "Fájlok és könyvtárak"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr "A súgóért használja a hivatkozást a megfelelő beállításnál"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
+msgid "Filter files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
+msgid "Forward HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
+msgid "Forward SOCKS 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
+msgid "Forward SOCKS 4A"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
+msgid "Forward SOCKS 5"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
+msgid "Forward SOCKS 5t"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding"
msgstr "Továbbítás"
msgid "Grant UCI access for luci-app-privoxy"
msgstr "UCI hozzáférés engedélyezése a <em>luci-app-privoxy</em> alkalmazásnak"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
+msgid "Handle as empty doc returns ok"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+"If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
-"Ha engedélyezve van, akkor a Privoxy elrejti a „menjen oda mindenképp” "
-"hivatkozást. A felhasználó nyilvánvalóan nem lehet képes megkerülni "
-"semmilyen blokkolást."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"érhetik el Önt, mit blokkol és miért teszi ezt, ismertetni a házirendeket, "
"stb."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr "Érvénytelen e-mail cím"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
msgid "It is NOT recommended for the casual user."
msgstr "NEM ajánlott az alkalmi felhasználóknak."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
+msgid "Keep-alive timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
+msgid "Listen addresses"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual."
msgstr "A Privoxy felhasználói kézikönyvének helye."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr "Naplófájl-megjelenítő"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
+msgid "Log Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
+msgid "Log File"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network"
msgstr "A hálózatról olvasott összes adat naplózása"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network"
msgstr "A hálózatra írt összes adat naplózása"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions"
msgstr "Az alkalmazott műveletek naplózása"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
"Azon kérések céljainak naplózása, amelyeket a Privoxy átenged. Nézze meg még "
"az „1024 hibakeresést”."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
"Azon kérések céljainak naplózása, amelyeket a Privoxy nem engedett át, "
"illetve az okát, hogy miért."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr "Naplózás"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Main actions file"
msgstr "Fő műveletek fájlja"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr "Kötelező bemenet: nincs adat megadva!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr "Kötelező bemenet: nincs könyvtár megadva!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No File given!"
msgstr "Kötelező bemenet: nincs fájl megadva!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr "Kötelező bemenet: nincs port megadva!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr "Kötelező bemenet: nincsenek fájlok megadva!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
-msgstr "Kötelező bemenet: nincs érvényes IPv4-cím vagy gép megadva!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr "Kötelező bemenet: nincs érvényes IPv6-cím megadva!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr "Kötelező bemenet: nincs érvényes port megadva!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
+msgid "Max. client connections"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
msgid "Maximum number of client connections that will be served."
msgstr "Ügyfélkapcsolatok legnagyobb száma, amely ki lesz szolgálva."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr "A puffer legnagyobb mérete (kilobájtban) a tartalomszűréshez."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr "Egyebek"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr "Nincs telepítve"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr "Ne használjon záró „/” karakter."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
+msgid "Misc"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr "Nem végzetes hibák – *erősen ajánljuk ennek engedélyezését*"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
"Másodpercek száma, amely után egy foglalat túllépi az időkorlátot, ha nem "
"érkezik adat."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
"Másodpercek száma, amely után egy nyitott kapcsolatot többé nem lehet "
"újrahasználni."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
+msgid "Permit access"
msgstr ""
-"Csak „külső szűrők” használatakor a Privoxynak átmeneti fájlokat kell "
-"létrehoznia."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr "Telepítse a jelenlegi verziót!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr "Nyomja meg a [Beolvasás] gombot"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Please read Privoxy manual for details!"
msgstr "Olvassa el a Privoxy kézikönyvét a részletekért!"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr "Frissítsen a jelenlegi verzióra!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
+msgid "Privoxy"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
+msgid "Privoxy Settings"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
+#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy"
msgstr "Privoxy webes proxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"beállításhoz, súgóhoz és naplózáshoz. A beállítófájl ezen szakasza mondja "
"meg a Privoxynak, hogy hol találja meg az egyéb fájlokat."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
+msgid "Proxy Info URL"
msgstr ""
-"A Privoxy egy nem gyorsítótárazó webes proxy speciális szűrési képességekkel "
-"a megnövelt adatvédelemhez, a weboldal adatainak és a HTTP fejlécek "
-"módosításához, a hozzáférés szabályozásához, valamint a reklámok és egyéb "
-"kellemetlen internetes szemét eltávolításához."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr "Naplófájl olvasása vagy újraolvasása"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Show I/O status"
msgstr "I/O állapot megjelenítése"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status"
msgstr "Minden kapcsolatállapot megjelenítése"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing"
msgstr "Fejléc feldolgozásának megjelenítése"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr "A(z) „%s” szoftvercsomag nincs telepítve."
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr "A(z) „%s” szoftvercsomag elavult."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "Indítás"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
+msgid "Single Threaded"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr "Indítás vagy leállítás"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
+msgid "Socket timeout"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr "Privoxy webes proxy indítása vagy leállítása"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
+msgid "Split large forms"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Startup banner and warnings."
msgstr "Rendszerindítási reklámcsík és figyelmeztetések."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
msgid "Syntax:"
msgstr "Elrendezés:"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces."
msgstr "Szintaxis: szóközzel elválasztott ügyfélfejlécnevek."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
+msgid ""
+"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]"
msgstr "Szintaxis: cél_minta http_szülő[:port]"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
+msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System"
msgstr "Rendszer"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
+msgid "Template Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
+msgid "Temporary Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
"A használandó műveleti fájlok. Több műveleti fájl sor is megengedett, és "
"valójában ajánlott!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
"A cím és a TCP port, amelyen a Privoxy figyelni fogja az ügyfélkéréseket."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
"A tömörítési szint, amely a zlib programkönyvtárnak kerül átadásra a "
"pufferelt tartalom tömörítésekor."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
+"located).<br />No trailing \"/\", please."
msgstr ""
-"A könyvtár, ahol az összes naplózás történik (azaz ahol a naplófájl "
-"található)."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located."
msgstr "A könyvtár, ahol az egyéb beállítófájlok találhatók."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
"A szűrőfájlok olyan tartalommódosítási szabályokat tartalmaznak, amelyek "
"reguláris kifejezéseket használnak."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages."
msgstr "A CGI-oldalakon megjelenített gépnév."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory."
msgstr "A használandó naplófájl. Fájlnév a naplózási könyvtártól relatívan."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
"A sorrend, amelyben az ügyfélfejlécek rendezve vannak a továbbításuk előtt."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
"Az állapotkód, amelyet a Privoxy visszaad azoknál a blokkolt oldalaknál, "
"amelyek üres dokumentumként vannak kezelve."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
"A megbízhatóság mechanizmus egy kísérleti funkció fehérlisták "
"összeállításához, és óvatosan kell használni."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-"Ennek a beállításnak az értéke csak akkor számít, ha a kísérleti "
-"megbízhatóság mechanizmus be lett kapcsolva."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
"Ez a beállítás csak hibakeresési célokból van itt. Drasztikusan csökkenteni "
"fogja a teljesítményt."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
"Ez a beállítás el lesz távolítva a későbbi kiadásokból, mivel az "
"általánosabb fejléccímkézők elavulttá tették."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
"Ez a lap vezérli a Privoxy beállításának biztonságra vonatkozó szempontjait."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
"Mely SOCKS proxyn keresztül (és esetlegesen mely szülő HTTP proxyhoz) "
"jellemző kéréseket kell irányítani."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr "Mely szülőhöz kell a HTTP proxyra jellemző kéréseket irányítani."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
+msgid "Toggle Status"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
+msgid "Tolerate pipelining"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
+msgid "Trust Info URL"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
+msgid "Trust file"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
+msgid ""
+"URL shown if access to an untrusted page is denied. Only applies if trust "
+"mechanism is enabled."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
+msgid "URL to documentation about the local Privoxy setup."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
+msgid "User Manual"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
msgid "User customizations"
msgstr "Felhasználói személyre szabások"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr "Az érték nem szám"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr "Az érték nem 0 és 300 között van"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr "Az érték nem 0 és 9 között van"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr "Az érték nem 1 és 4096 között van"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr "Az érték nem nagyobb mint 0 vagy üres"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr ""
"Értéktartomány 1 és 4096 között, nincs alapértelmezetten 4096-os bejegyzés"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "Verzió"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr "Verzióinformációk"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
msgid "Whether intercepted requests should be treated as valid."
msgstr "Az elfogott kéréseket érvényesnek kell-e tekinteni vagy sem."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
"A Privoxy ismerje-e fel a különleges HTTP fejléceket az átváltási állapot "
"megváltoztatásához vagy sem."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery."
msgstr "A pufferelt tartalom legyen-e tömörítve kézbesítés előtt vagy sem."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
"Az életben tartott kimenő kapcsolatokat meg kell-e osztani a különböző "
"bejövő kapcsolatok között vagy sem."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served."
msgstr "A csővezetéken keresztüli kéréseket ki kell-e szolgálni vagy sem."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr "A Privoxyn keresztüli proxyhitelesítésnek működnie kell-e vagy sem."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used."
msgstr "A webalapú műveletek fájlszerkesztője legyen-e használva vagy sem."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used."
msgstr "A webalapú átkapcsolási funkciót lehessen-e használni vagy sem."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
"A Privoxy CGI-oldalaihoz intézett kéréseket lehessen-e blokkolni vagy "
"átirányítani."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr "A CGI felület maradjon-e kompatibilis a törött HTTP ügyfelekkel."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread."
msgstr "Csak egyetlen kiszolgálószálat futtasson-e."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what."
msgstr "Ki férhet hozzá mihez."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr "telepítve"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr "vagy magasabb"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr "kötelező"
+#~ msgid ""
+#~ "A URL to be displayed in the error page that users will see if access to "
+#~ "an untrusted page is denied."
+#~ msgstr ""
+#~ "Azon a hibaoldalon megjelenítendő URL, amelyet a felhasználók akkor "
+#~ "fognak látni, ha egy megbízhatatlan oldalhoz történő hozzáférés "
+#~ "megtagadásra kerül."
+
+#~ msgid ""
+#~ "A URL to documentation about the local Privoxy setup, configuration or "
+#~ "policies."
+#~ msgstr ""
+#~ "Egy URL a helyi Privoxy beállítással, konfigurációval és házirendekkel "
+#~ "kapcsolatos dokumentációhoz."
+
+#~ msgid "A directory where Privoxy can create temporary files."
+#~ msgstr "Egy könyvtár, ahol a Privoxy átmeneti fájlokat hozhat létre."
+
+#~ msgid "An alternative directory where the templates are loaded from."
+#~ msgstr "Egy alternatív könyvtár, ahonnan a sablonok betöltésre kerülnek."
+
+#~ msgid "An email address to reach the Privoxy administrator."
+#~ msgstr "Egy e-mail cím a Privoxy adminisztrátorának eléréséhez."
+
+#~ msgid ""
+#~ "Configure here the routing of HTTP requests through a chain of multiple "
+#~ "proxies. Note that parent proxies can severely decrease your privacy "
+#~ "level. Also specified here are SOCKS proxies."
+#~ msgstr ""
+#~ "Itt állítsa be a több proxyláncon keresztüli HTTP kérések útválasztását. "
+#~ "Ne feledje, hogy a szülőproxyk erősen csökkenthetik az adatvédelmi "
+#~ "szintet. Itt adhatók meg a SOCKS proxyk is."
+
+#~ msgid "Delay (in seconds) during system boot before Privoxy start"
+#~ msgstr ""
+#~ "Késleltetés (másodpercben) a rendszerindítás közben a Privoxy indulása "
+#~ "előtt"
+
+#~ msgid "Directory does not exist!"
+#~ msgstr "A könyvtár nem létezik!"
+
+#~ msgid "During delay ifup-events are not monitored !"
+#~ msgstr "Az ifup események alatti késleltetés nincs megfigyelve!"
+
+#~ msgid ""
+#~ "Enable/Disable autostart of Privoxy on system startup and interface events"
+#~ msgstr ""
+#~ "A Privoxy automatikus indításának engedélyezése vagy letiltása a rendszer "
+#~ "indításakor és a csatolóeseményeknél"
+
+#~ msgid "File '%s' not found inside Configuration Directory"
+#~ msgstr "A(z) „%s” fájl nem található a beállítási könyvtáron belül"
+
+#~ msgid "File not found or empty"
+#~ msgstr "A fájl nem található vagy üres"
+
+#~ msgid "For help use link at the relevant option"
+#~ msgstr "A súgóért használja a hivatkozást a megfelelő beállításnál"
+
+#~ msgid ""
+#~ "If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+#~ "should not be able to bypass any blocks."
+#~ msgstr ""
+#~ "Ha engedélyezve van, akkor a Privoxy elrejti a „menjen oda mindenképp” "
+#~ "hivatkozást. A felhasználó nyilvánvalóan nem lehet képes megkerülni "
+#~ "semmilyen blokkolást."
+
+#~ msgid "Invalid email address"
+#~ msgstr "Érvénytelen e-mail cím"
+
+#~ msgid "Log File Viewer"
+#~ msgstr "Naplófájl-megjelenítő"
+
+#~ msgid "Logging"
+#~ msgstr "Naplózás"
+
+#~ msgid "Mandatory Input: No Data given!"
+#~ msgstr "Kötelező bemenet: nincs adat megadva!"
+
+#~ msgid "Mandatory Input: No Directory given!"
+#~ msgstr "Kötelező bemenet: nincs könyvtár megadva!"
+
+#~ msgid "Mandatory Input: No Port given!"
+#~ msgstr "Kötelező bemenet: nincs port megadva!"
+
+#~ msgid "Mandatory Input: No files given!"
+#~ msgstr "Kötelező bemenet: nincsenek fájlok megadva!"
+
+#~ msgid "Mandatory Input: No valid IPv4 address or host given!"
+#~ msgstr "Kötelező bemenet: nincs érvényes IPv4-cím vagy gép megadva!"
+
+#~ msgid "Mandatory Input: No valid IPv6 address given!"
+#~ msgstr "Kötelező bemenet: nincs érvényes IPv6-cím megadva!"
+
+#~ msgid "Mandatory Input: No valid Port given!"
+#~ msgstr "Kötelező bemenet: nincs érvényes port megadva!"
+
+#~ msgid "Miscellaneous"
+#~ msgstr "Egyebek"
+
+#~ msgid "NOT installed"
+#~ msgstr "Nincs telepítve"
+
+#~ msgid "No trailing '/', please."
+#~ msgstr "Ne használjon záró „/” karakter."
+
+#~ msgid ""
+#~ "Only when using 'external filters', Privoxy has to create temporary files."
+#~ msgstr ""
+#~ "Csak „külső szűrők” használatakor a Privoxynak átmeneti fájlokat kell "
+#~ "létrehoznia."
+
+#~ msgid "Please install current version !"
+#~ msgstr "Telepítse a jelenlegi verziót!"
+
+#~ msgid "Please press [Read] button"
+#~ msgstr "Nyomja meg a [Beolvasás] gombot"
+
+#~ msgid "Please update to the current version!"
+#~ msgstr "Frissítsen a jelenlegi verzióra!"
+
+#~ msgid ""
+#~ "Privoxy is a non-caching web proxy with advanced filtering capabilities "
+#~ "for enhancing privacy, modifying web page data and HTTP headers, "
+#~ "controlling access, and removing ads and other obnoxious Internet junk."
+#~ msgstr ""
+#~ "A Privoxy egy nem gyorsítótárazó webes proxy speciális szűrési "
+#~ "képességekkel a megnövelt adatvédelemhez, a weboldal adatainak és a HTTP "
+#~ "fejlécek módosításához, a hozzáférés szabályozásához, valamint a reklámok "
+#~ "és egyéb kellemetlen internetes szemét eltávolításához."
+
+#~ msgid "Read / Reread log file"
+#~ msgstr "Naplófájl olvasása vagy újraolvasása"
+
+#~ msgid "Software package '%s' is not installed."
+#~ msgstr "A(z) „%s” szoftvercsomag nincs telepítve."
+
+#~ msgid "Software package '%s' is outdated."
+#~ msgstr "A(z) „%s” szoftvercsomag elavult."
+
+#~ msgid "Start"
+#~ msgstr "Indítás"
+
+#~ msgid "Start / Stop"
+#~ msgstr "Indítás vagy leállítás"
+
+#~ msgid "Start/Stop Privoxy WEB Proxy"
+#~ msgstr "Privoxy webes proxy indítása vagy leállítása"
+
+#~ msgid ""
+#~ "The directory where all logging takes place (i.e. where the logfile is "
+#~ "located)."
+#~ msgstr ""
+#~ "A könyvtár, ahol az összes naplózás történik (azaz ahol a naplófájl "
+#~ "található)."
+
+#~ msgid ""
+#~ "The value of this option only matters if the experimental trust mechanism "
+#~ "has been activated."
+#~ msgstr ""
+#~ "Ennek a beállításnak az értéke csak akkor számít, ha a kísérleti "
+#~ "megbízhatóság mechanizmus be lett kapcsolva."
+
+#~ msgid "Value is not a number"
+#~ msgstr "Az érték nem szám"
+
+#~ msgid "Value not between 0 and 300"
+#~ msgstr "Az érték nem 0 és 300 között van"
+
+#~ msgid "Value not between 0 and 9"
+#~ msgstr "Az érték nem 0 és 9 között van"
+
+#~ msgid "Value not between 1 and 4096"
+#~ msgstr "Az érték nem 1 és 4096 között van"
+
+#~ msgid "Value not greater 0 or empty"
+#~ msgstr "Az érték nem nagyobb mint 0 vagy üres"
+
+#~ msgid "Version"
+#~ msgstr "Verzió"
+
+#~ msgid "Version Information"
+#~ msgstr "Verzióinformációk"
+
+#~ msgid "installed"
+#~ msgstr "telepítve"
+
+#~ msgid "or higher"
+#~ msgstr "vagy magasabb"
+
+#~ msgid "required"
+#~ msgstr "kötelező"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.7-dev\n"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
+"A directory where Privoxy can create temporary files.<br /><strong>Only when "
+"using 'external filters', Privoxy has to create temporary files.</strong>"
msgstr ""
-"Un URL da mostrare nella pagina di errore che gli utenti vedranno se viene "
-"negato l'accesso ad una pagina non affidabile."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
+msgid "Accept intercepted requests"
msgstr ""
-"Un URL alla documentazione locale su setup , configurazione o policy di "
-"Privoxy."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr "Una cartella in cui Privoxy può creare file temporanei."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "Access Control"
msgstr "Controllo di accesso"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
+msgid "Action Files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
"Azioni che vengono applicate a tutti i siti e che potrebbero essere "
"sovrascritte in seguito."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr "Una directory alternativa da cui sono caricati i template."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
+msgid "Admin Email"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
+msgid "Allow CGI request crunching"
msgstr ""
-"Un indirizzo di posta elettronica per contattare l'amministratore di Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
+msgid ""
+"An alternative directory where the templates are loaded from.<br />No "
+"trailing \"/\", please."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
"Tempo di attesa (in secondi) previsto lato server se non specificato dal "
"server."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay"
msgstr "Ritardo all'avvio"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
+msgid "Buffer Limit"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface"
msgstr "Interfaccia Utente CGI"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
+msgid "Client header order"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
+msgid "Compression level"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
+msgid "Configuration Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
+msgid "Configure the Privoxy proxy daemon settings."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
+msgid "Connection sharing"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
+msgid "Debug 1"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
+msgid "Debug 1024"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
+msgid "Debug 128"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
+msgid "Debug 16"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
+msgid "Debug 2"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
+msgid "Debug 2048"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
+msgid "Debug 256"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
+msgid "Debug 32"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
+msgid "Debug 32768"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
+msgid "Debug 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
+msgid "Debug 4096"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
+msgid "Debug 512"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
+msgid "Debug 64"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
+msgid "Debug 65536"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
+msgid "Debug 8"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
+msgid "Debug 8192"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
+msgid "Default server timeout"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
+msgid "Delay (in seconds) during system boot before Privoxy starts."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
+msgid "Deny access"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "Documentation"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
+msgid "Email address for the Privoxy administrator."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
+msgid "Enable action file editor"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
+msgid "Enable compression"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
+msgid "Enable remote toggle"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
+msgid "Enable remote toggle via HTTP"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
+msgid "Enable/Disable autostart of Privoxy"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled"
msgstr "Abilita"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
+msgid "Enforce page blocking"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
+msgid "Files and Directories"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
-msgid "Files and Directories"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
+msgid "Filter files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
+msgid "Forward HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
+msgid "Forward SOCKS 4"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
+msgid "Forward SOCKS 4A"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
+msgid "Forward SOCKS 5"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
+msgid "Forward SOCKS 5t"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding"
msgstr ""
msgid "Grant UCI access for luci-app-privoxy"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
+msgid "Handle as empty doc returns ok"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+"If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"do that, your policies, etc."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
+msgid "It is NOT recommended for the casual user."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
+msgid "Keep-alive timeout"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
-msgid "It is NOT recommended for the casual user."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
+msgid "Listen addresses"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr "Visualizzatore Registro"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
+msgid "Log Directory"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
+msgid "Log File"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr "Registrazione (log)"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Main actions file"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No File given!"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
+msgid "Max. client connections"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
msgid "Maximum number of client connections that will be served."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
+msgid "Misc"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
+msgid "Permit access"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
+msgid "Please read Privoxy manual for details!"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr "Per favore premi il pulsante [Leggi]"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
-msgid "Please read Privoxy manual for details!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
+msgid "Privoxy"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
+msgid "Privoxy Settings"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
+#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"tells Privoxy where to find those other files."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
+msgid "Proxy Info URL"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr "Leggi / Rileggi registro"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Show I/O status"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
+msgid "Single Threaded"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
+msgid "Socket timeout"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "Avvia"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
+msgid "Split large forms"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Startup banner and warnings."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
msgid "Syntax:"
msgstr "Sintassi:"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
+msgid ""
+"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
+msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System"
msgstr "Sistema"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
+msgid "Template Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
+msgid "Temporary Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
+"located).<br />No trailing \"/\", please."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
-msgid "User customizations"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
+msgid "Toggle Status"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
+msgid "Tolerate pipelining"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
+msgid "Trust Info URL"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
+msgid "Trust file"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
+msgid ""
+"URL shown if access to an untrusted page is denied. Only applies if trust "
+"mechanism is enabled."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
+msgid "URL to documentation about the local Privoxy setup."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
-msgid "Value range 1 to 4096, no entry defaults to 4096"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
+msgid "User Manual"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "Versione"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
+msgid "User customizations"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
+msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
msgid "Whether intercepted requests should be treated as valid."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr ""
+#~ msgid ""
+#~ "A URL to be displayed in the error page that users will see if access to "
+#~ "an untrusted page is denied."
+#~ msgstr ""
+#~ "Un URL da mostrare nella pagina di errore che gli utenti vedranno se "
+#~ "viene negato l'accesso ad una pagina non affidabile."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr ""
+#~ msgid ""
+#~ "A URL to documentation about the local Privoxy setup, configuration or "
+#~ "policies."
+#~ msgstr ""
+#~ "Un URL alla documentazione locale su setup , configurazione o policy di "
+#~ "Privoxy."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr ""
+#~ msgid "A directory where Privoxy can create temporary files."
+#~ msgstr "Una cartella in cui Privoxy può creare file temporanei."
+
+#~ msgid "An alternative directory where the templates are loaded from."
+#~ msgstr "Una directory alternativa da cui sono caricati i template."
+
+#~ msgid "An email address to reach the Privoxy administrator."
+#~ msgstr ""
+#~ "Un indirizzo di posta elettronica per contattare l'amministratore di "
+#~ "Privoxy."
+
+#~ msgid "Log File Viewer"
+#~ msgstr "Visualizzatore Registro"
+
+#~ msgid "Logging"
+#~ msgstr "Registrazione (log)"
+
+#~ msgid "Please press [Read] button"
+#~ msgstr "Per favore premi il pulsante [Leggi]"
+
+#~ msgid "Read / Reread log file"
+#~ msgstr "Leggi / Rileggi registro"
+
+#~ msgid "Start"
+#~ msgstr "Avvia"
+
+#~ msgid "Version"
+#~ msgstr "Versione"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.5-dev\n"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
+"A directory where Privoxy can create temporary files.<br /><strong>Only when "
+"using 'external filters', Privoxy has to create temporary files.</strong>"
msgstr ""
-"信頼されていないページへのアクセスが拒否された場合に、ユーザーに表示されるエ"
-"ラーページに表示されるURL。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
-msgstr ""
-"ローカルの Privoxy のセットアップ、構成、またはポリシーに関するドキュメントへ"
-"の URL。"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
+msgid "Accept intercepted requests"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "Access Control"
msgstr "アクセス制御"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
+msgid "Action Files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
+msgid "Admin Email"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
+msgid "Allow CGI request crunching"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
+msgid ""
+"An alternative directory where the templates are loaded from.<br />No "
+"trailing \"/\", please."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
+msgid "Buffer Limit"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface"
msgstr "CGIユーザーインターフェイス"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
+msgid "Client header order"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
+msgid "Compression level"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
+msgid "Configuration Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
+msgid "Configure the Privoxy proxy daemon settings."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
+msgid "Connection sharing"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
+msgid "Debug 1"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
+msgid "Debug 1024"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
+msgid "Debug 128"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
+msgid "Debug 16"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
+msgid "Debug 2"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
+msgid "Debug 2048"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
+msgid "Debug 256"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
+msgid "Debug 32"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
+msgid "Debug 32768"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
+msgid "Debug 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
+msgid "Debug 4096"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
+msgid "Debug 512"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
+msgid "Debug 64"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
+msgid "Debug 65536"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
+msgid "Debug 8"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
+msgid "Debug 8192"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
+msgid "Default server timeout"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr "ディレクトリが存在しません!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
+msgid "Delay (in seconds) during system boot before Privoxy starts."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
+msgid "Deny access"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "Documentation"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
+msgid "Email address for the Privoxy administrator."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
+msgid "Enable action file editor"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
+msgid "Enable compression"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
+msgid "Enable remote toggle"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
+msgid "Enable remote toggle via HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
+msgid "Enable/Disable autostart of Privoxy"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled"
msgstr "有効"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
+msgid "Enforce page blocking"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr "ファイルが見つからないか空です"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid "Files and Directories"
msgstr "ファイルとディレクトリ"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
+msgid "Filter files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
+msgid "Forward HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
+msgid "Forward SOCKS 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
+msgid "Forward SOCKS 4A"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
+msgid "Forward SOCKS 5"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
+msgid "Forward SOCKS 5t"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding"
msgstr ""
msgid "Grant UCI access for luci-app-privoxy"
msgstr "luci-app-privoxyにUCIアクセスを許可"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
+msgid "Handle as empty doc returns ok"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+"If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"do that, your policies, etc."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr "無効なメール アドレス"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
msgid "It is NOT recommended for the casual user."
msgstr "ライトユーザーにはお勧めしません。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
+msgid "Keep-alive timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
+msgid "Listen addresses"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr "ログファイル・ビューア"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
+msgid "Log Directory"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
+msgid "Log File"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr "ロギング"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Main actions file"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No File given!"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
+msgid "Max. client connections"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
msgid "Maximum number of client connections that will be served."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr "詳細設定"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
+msgid "Misc"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
+msgid "Permit access"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
+msgid "Please read Privoxy manual for details!"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr "[読込] ボタンを押してください"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
-msgid "Please read Privoxy manual for details!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
+msgid "Privoxy"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
+msgid "Privoxy Settings"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
+#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"tells Privoxy where to find those other files."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
+msgid "Proxy Info URL"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr "ログファイルの読み込み/再読み込み"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Show I/O status"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
+msgid "Single Threaded"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
+msgid "Socket timeout"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "開始"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr "開始 / 停止"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
+msgid "Split large forms"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Startup banner and warnings."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
msgid "Syntax:"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
+msgid ""
+"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
+msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System"
msgstr "システム"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
+msgid "Template Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
+msgid "Temporary Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
+"located).<br />No trailing \"/\", please."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
-msgid "User customizations"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
+msgid "Toggle Status"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
+msgid "Tolerate pipelining"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr "0 から 300 の間の値ではありません"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
+msgid "Trust Info URL"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr "0 から 9 の間の値ではありません"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
+msgid "Trust file"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr "1 から 4096 の間の値ではありません"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
+msgid ""
+"URL shown if access to an untrusted page is denied. Only applies if trust "
+"mechanism is enabled."
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
+msgid "URL to documentation about the local Privoxy setup."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
-msgid "Value range 1 to 4096, no entry defaults to 4096"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
+msgid "User Manual"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "バージョン"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
+msgid "User customizations"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr "バージョン情報"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
+msgid "Value range 1 to 4096, no entry defaults to 4096"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
msgid "Whether intercepted requests should be treated as valid."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr ""
+#~ msgid ""
+#~ "A URL to be displayed in the error page that users will see if access to "
+#~ "an untrusted page is denied."
+#~ msgstr ""
+#~ "信頼されていないページへのアクセスが拒否された場合に、ユーザーに表示される"
+#~ "エラーページに表示されるURL。"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr ""
+#~ msgid ""
+#~ "A URL to documentation about the local Privoxy setup, configuration or "
+#~ "policies."
+#~ msgstr ""
+#~ "ローカルの Privoxy のセットアップ、構成、またはポリシーに関するドキュメン"
+#~ "トへの URL。"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr ""
+#~ msgid "Directory does not exist!"
+#~ msgstr "ディレクトリが存在しません!"
+
+#~ msgid "File not found or empty"
+#~ msgstr "ファイルが見つからないか空です"
+
+#~ msgid "Invalid email address"
+#~ msgstr "無効なメール アドレス"
+
+#~ msgid "Log File Viewer"
+#~ msgstr "ログファイル・ビューア"
+
+#~ msgid "Logging"
+#~ msgstr "ロギング"
+
+#~ msgid "Miscellaneous"
+#~ msgstr "詳細設定"
+
+#~ msgid "Please press [Read] button"
+#~ msgstr "[読込] ボタンを押してください"
+
+#~ msgid "Read / Reread log file"
+#~ msgstr "ログファイルの読み込み/再読み込み"
+
+#~ msgid "Start"
+#~ msgstr "開始"
+
+#~ msgid "Start / Stop"
+#~ msgstr "開始 / 停止"
+
+#~ msgid "Value not between 0 and 300"
+#~ msgstr "0 から 300 の間の値ではありません"
+
+#~ msgid "Value not between 0 and 9"
+#~ msgstr "0 から 9 の間の値ではありません"
+
+#~ msgid "Value not between 1 and 4096"
+#~ msgstr "1 から 4096 の間の値ではありません"
+
+#~ msgid "Version"
+#~ msgstr "バージョン"
+
+#~ msgid "Version Information"
+#~ msgstr "バージョン情報"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2022-07-31 13:17+0000\n"
-"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsprivoxy/ko/>\n"
-"Language: ko\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 4.14-dev\n"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
-msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
-msgid "Access Control"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
-msgid "Actions that are applied to all sites and maybe overruled later on."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
-msgid ""
-"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
-"server."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
-msgid "Boot delay"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
-msgid "CGI user interface"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
-msgid "Common Log Format"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
-msgid "Debug GIF de-animation"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
-msgid "Debug force feature"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
-msgid "Debug redirects"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
-msgid "Debug regular expression filters"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
-msgid "Disabled == Transparent Proxy Mode"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
-msgid "Documentation"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
-msgid "Enable proxy authentication forwarding"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
-msgid "Enable/Disable filtering when Privoxy starts."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
-msgid "Enabled"
-msgstr "활성화"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
-msgid ""
-"Enabling this option is NOT recommended if there is no parent proxy that "
-"requires authentication!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
-msgid "Files and Directories"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
-msgid "Forwarding"
-msgstr ""
-
-#: applications/luci-app-privoxy/root/usr/share/rpcd/acl.d/luci-app-privoxy.json:3
-msgid "Grant UCI access for luci-app-privoxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
-msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
-"should not be able to bypass any blocks."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
-msgid ""
-"If you intend to operate Privoxy for more users than just yourself, it might "
-"be a good idea to let them know how to reach you, what you block and why you "
-"do that, your policies, etc."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
-msgid "It is NOT recommended for the casual user."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
-msgid "Location of the Privoxy User Manual."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
-msgid "Log all data read from the network"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
-msgid "Log all data written to the network"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
-msgid "Log the applying actions"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
-msgid ""
-"Log the destination for each request Privoxy let through. See also 'Debug "
-"1024'."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
-msgid ""
-"Log the destination for requests Privoxy didn't let through, and the reason "
-"why."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
-msgid "Main actions file"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
-msgid "Mandatory Input: No File given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
-msgid "Maximum number of client connections that will be served."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
-msgid "Maximum size (in KB) of the buffer for content filtering."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
-msgid "Non-fatal errors - *we highly recommended enabling this*"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
-msgid ""
-"Number of seconds after which a socket times out if no data is received."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
-msgid ""
-"Number of seconds after which an open connection will no longer be reused."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
-msgid "Please read Privoxy manual for details!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
-msgid "Privoxy WEB proxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
-msgid ""
-"Privoxy can (and normally does) use a number of other files for additional "
-"configuration, help and logging. This section of the configuration file "
-"tells Privoxy where to find those other files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
-msgid "Show I/O status"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
-msgid "Show each connection status"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
-msgid "Show header parsing"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "시작"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
-msgid "Startup banner and warnings."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
-msgid "Syntax:"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
-msgid "Syntax: Client header names delimited by spaces."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
-msgid "Syntax: target_pattern http_parent[:port]"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
-msgid "System"
-msgstr "시스템"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
-msgid ""
-"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
-"are in fact recommended!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
-msgid ""
-"The address and TCP port on which Privoxy will listen for client requests."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
-msgid ""
-"The compression level that is passed to the zlib library when compressing "
-"buffered content."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
-msgid ""
-"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
-msgid "The directory where the other configuration files are located."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
-msgid ""
-"The filter files contain content modification rules that use regular "
-"expressions."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
-msgid "The hostname shown on the CGI pages."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
-msgid "The log file to use. File name, relative to log directory."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
-msgid "The order in which client headers are sorted before forwarding them."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
-msgid ""
-"The status code Privoxy returns for pages blocked with +handle-as-empty-"
-"document."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
-msgid ""
-"The trust mechanism is an experimental feature for building white-lists and "
-"should be used with care."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
-msgid ""
-"This option is only there for debugging purposes. It will drastically reduce "
-"performance."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
-msgid ""
-"This option will be removed in future releases as it has been obsoleted by "
-"the more general header taggers."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
-msgid ""
-"This tab controls the security-relevant aspects of Privoxy's configuration."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
-msgid ""
-"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
-"specific requests should be routed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
-msgid "To which parent HTTP proxy specific requests should be routed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
-msgid "User customizations"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
-msgid "Value range 1 to 4096, no entry defaults to 4096"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "버전"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
-msgid "Whether intercepted requests should be treated as valid."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
-msgid ""
-"Whether or not Privoxy recognizes special HTTP headers to change toggle "
-"state."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
-msgid "Whether or not buffered content is compressed before delivery."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
-msgid ""
-"Whether or not outgoing connections that have been kept alive should be "
-"shared between different incoming connections."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
-msgid "Whether or not pipelined requests should be served."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
-msgid "Whether or not proxy authentication through Privoxy should work."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
-msgid "Whether or not the web-based actions file editor may be used."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
-msgid "Whether or not the web-based toggle feature may be used."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
-msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
-msgid ""
-"Whether the CGI interface should stay compatible with broken HTTP clients."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
-msgid "Whether to run only one server thread."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
-msgid "Who can access what."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr ""
"(n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 5.8-rc\n"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
+"A directory where Privoxy can create temporary files.<br /><strong>Only when "
+"using 'external filters', Privoxy has to create temporary files.</strong>"
msgstr ""
-"„URL“ – saitas, kuris bus rodomas klaidos puslapyje, kurį naudotojai/"
-"vartotojai matys, jei prieiga prie nepatikimo puslapio yra uždrausta."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
+msgid "Accept intercepted requests"
msgstr ""
-"„URL“ – saitas į dokumentaciją apie vietinę – „Privoxy“ sąranką, "
-"konfigūraciją arba politiką."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr "Katalogas/Vietovė, kurioje „Privoxy“ gali sukurti laikinus failus."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "Access Control"
msgstr "Prieigos valdymas"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
+msgid "Action Files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
"Veiksmai, kurie yra taikomi visoms svetainėms ir vėliau gali būti pervaldyti."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr "Alternatyvus/-i katalogas/vietovė, iš kurio yra įkeliami šablonai."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
+msgid "Admin Email"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr "El. pašto adresas, norint pasiekti „Privoxy“ administratorių."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
+msgid "Allow CGI request crunching"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
+msgid ""
+"An alternative directory where the templates are loaded from.<br />No "
+"trailing \"/\", please."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
"Numanomas serverio pusės „gyvos“/„reaguojančios“ pasibaigusios užklausos "
"laikas (sekundėmis), jei to nenurodė serveris."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay"
msgstr "Paleidimo atidėjimas"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
+msgid "Buffer Limit"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface"
msgstr "Tipinė tinklo tarpuvartės; kompiuterijos naudotojo/vartotojo sąsaja"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
+msgid "Client header order"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format"
msgstr "Dažnas žurnalo formatas"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
+msgid "Compression level"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
+msgid "Configuration Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
+msgid "Configure the Privoxy proxy daemon settings."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
+msgid "Connection sharing"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
+msgid "Debug"
msgstr ""
-"Čia sukonfigūruokite „HTTP“ užklausų kelvadą per kelių įgaliotojų grandinę. "
-"Atminkite, kad aukštutiniai įgaliotieji gali labai sumažinti Jūsų privatumo "
-"lygį. Čia taip pat yra nurodyti „SOCKS“ įgaliotiniai."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
+msgid "Debug 1"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
+msgid "Debug 1024"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
+msgid "Debug 128"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
+msgid "Debug 16"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
+msgid "Debug 2"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
+msgid "Debug 2048"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
+msgid "Debug 256"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
+msgid "Debug 32"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
+msgid "Debug 32768"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
+msgid "Debug 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
+msgid "Debug 4096"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
+msgid "Debug 512"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
+msgid "Debug 64"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
+msgid "Debug 65536"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
+msgid "Debug 8"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
+msgid "Debug 8192"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation"
msgstr "„GIF de-animacijos“ derinimas"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature"
msgstr "Derinti priverstiną funkciją"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects"
msgstr "Derinti nukreipimus/peradresavimus"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters"
msgstr "Derinti normalių išraiškų filtrus"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
+msgid "Default server timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
+msgid "Delay (in seconds) during system boot before Privoxy starts."
msgstr ""
-"Atidėjimas (sekundėmis), kol sistema kraunasi prieš „Privoxy“ paleidimą"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr "Katalogas neegzistuoja!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
+msgid "Deny access"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode"
msgstr "Išjungta/Neįgalinta == Permatoma įgaliotojo veiksena"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "Documentation"
msgstr "Dokumentacija"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr "Atidėjimo metu, „ifup“-įvykiai nėra stebimi!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
+msgid "Email address for the Privoxy administrator."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
+msgid "Enable action file editor"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
+msgid "Enable compression"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding"
msgstr "Įjungti/Įgalinti įgaliotojo autentifikavimo persiuntimą"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
+msgid "Enable remote toggle"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
+msgid "Enable remote toggle via HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
+msgid "Enable/Disable autostart of Privoxy"
msgstr ""
-"Įjungti/Įgalinti┃Išjungti/Išgalinti automatinį „Privoxy“ paleidimą sistemos "
-"paleidimo ir sąsajos ir/arba sietuvo įvykiuose"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts."
msgstr "Įjungti/Išjungti filtravimą, kai pasileidžia „Privoxy“."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled"
msgstr "Įjungta/Įgalinta (-s/-i)"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
"Įjungiant/Įgalinant šią parinktį NĖRA rekomenduojama, jei nėra aukštutinio "
"įgaliotojo, kuriam reikalingas autentifikavimas!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr "Failas „%s“ nerastas konfigūracijos kataloge (vietovėje)"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr "Failas nerastas arba tuščias"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
+msgid "Enforce page blocking"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid "Files and Directories"
msgstr "Failai ir katalogai"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr "Jei reikia pagalbos, naudokite atitinkamos parinkties nuorodą"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
+msgid "Filter files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
+msgid "Forward HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
+msgid "Forward SOCKS 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
+msgid "Forward SOCKS 4A"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
+msgid "Forward SOCKS 5"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
+msgid "Forward SOCKS 5t"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding"
msgstr "Persiuntimas"
msgid "Grant UCI access for luci-app-privoxy"
msgstr "Suteikti „UCI“ prieigą – „luci-app-privoxy“"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
+msgid "Handle as empty doc returns ok"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+"If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
-"Jei įjungtas/įgalintas, „Privoxy“ paslepia nuorodą – „vis tiek eiti ten“. "
-"Akivaizdu, kad naudotojas/vartotojas neturėtų apeiti jokių blokų."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"vartotojams, vertėtų jiems pranešti, kaip su Jumis susisiekti, ką ir kodėl "
"blokuojate, kokia yra Jūsų politiką ir t.t."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr "Negalimas el. pašto adresas"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
msgid "It is NOT recommended for the casual user."
msgstr "Nerekomenduojama nepatyrusiam naudotojui/vartotojui."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
+msgid "Keep-alive timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
+msgid "Listen addresses"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual."
msgstr "„Privoxy“ naudotojo gido/instrukcijų vietovė."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr "Žurnalo failo žiūrovas/-ė"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
+msgid "Log Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
+msgid "Log File"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network"
msgstr "Žurnalinti visus duomenų skaitymus iš tinklo"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network"
msgstr "Žurnalinti visus duomenų įrašymus į tinklą"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions"
msgstr "Žurnalinti pritaikomus veiksmus"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
"Žurnalinti paskirtį, kiekvienai užklausai, kurią „Privoxy“ praleidžią. Tai "
"pat peržiūrėti: „Debug 1024“."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
"Žurnalinti paskirtį, užklausoms, kurias „Privoxy“ nepraleido. Tai pat "
"sužinoti kodėl."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr "Žurnalinimas"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Main actions file"
msgstr "Pagrindinių veiksmų failas"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr "Privaloma įvestis: jokių duomenų nepateikta!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr "Privaloma įvestis: joks katalogas (vietovė) nepateiktas!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No File given!"
msgstr "Privaloma įvestis: joks failas nepateiktas!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr "Privaloma įvestis: joks prievadas nepateiktas!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr "Privaloma įvestis: jokie failai nepateikti!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
+msgid "Max. client connections"
msgstr ""
-"Privaloma įvestis: joks tinkamas ir galiojantis IPv4 adresas ar skleidėjas/"
-"vedėjas nepateiktas!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr ""
-"Privaloma įvestis: joks tinkamas ir galiojantis IPv6 adresas nepateiktas!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr "Privaloma įvestis: joks tinkamas prievadas nepateiktas!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
msgid "Maximum number of client connections that will be served."
msgstr "Maksimalus klientų jungčių skaičius, kurios bus aptarnaujamos."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr "Maksimalus turinio filtravimo buferio dydis (kilobaitais)."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr "Pašaliniai"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr "Neįdiegta"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr "Prašome rašyti be – „/“ (pasvirojo brūkšnio) skyrybos ženklo."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
+msgid "Misc"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr ""
"Nelemtingos klaidos – *mes primygtinai rekomenduojame tai įjungti/įgalinti*"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
"Sekundžių skaičius, po kurio baigiasi lizdo laiko pereikvojimas, jei "
"negaunami jokie duomenys."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
"Sekundžių skaičius, po kurio atidarytas ryšys nebebus naudojamas "
"pakartotinai."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
+msgid "Permit access"
msgstr ""
-"Tik naudojant „išorinius filtrus“, „Privoxy“ turi sukurti laikinus failus."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr "Prašome įdiegti dabartinę versiją !"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr "Prašome paspausti [Skaityta] mygtuką"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Please read Privoxy manual for details!"
msgstr ""
"Norėdami gauti daugiau informacijos, prašome perskaityti – „Privoxy“ vadovą, "
"dėl išsamesnės informacijos!"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr "Prašome atnaujinti į naujausia versiją!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
+msgid "Privoxy"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
+msgid "Privoxy Settings"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
+#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy"
msgstr "Įgaliotas „Privoxy WEB“"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"konfigūracijai, pagalbai ir žurnalinimui. Ši konfigūracijos failo dalis "
"nurodo – „Privoxy“, kur rasti tuos kitus failus."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
+msgid "Proxy Info URL"
msgstr ""
-"„Privoxy“ yra talpykloje/podėlyje neskelbiamas tinklalapio įgaliotojas, "
-"turintis pažangias filtravimo galimybes, skirtas privatumui didinti, "
-"tinklalapių duomenims ir „HTTP“ antraštėms keisti, prieigai valdyti ir "
-"reklamoms/skelbimams bei kitokiam nemalonaus interneto šlamštui pašalinti."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr "Skaityti / Iš naujo perskaityti žurnalo failą"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Show I/O status"
msgstr "Rodyti Į/I būklę/būseną"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status"
msgstr "Rodyti kiekvieno prisijungimo būsenas"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing"
msgstr "Rodyti antraštės sintaksės analizę"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr "Taikomosios programos paketas – „%s“ yra neįdiegtas."
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr "Taikomosios programos paketas – „%s“ yra pasenęs."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "Pradėti"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
+msgid "Single Threaded"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr "Pradėti / Stabdyti"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
+msgid "Socket timeout"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr "Paleisti/Stabdyti „Privoxy WEB“ įgaliotąjį"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
+msgid "Split large forms"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Startup banner and warnings."
msgstr "Paleidimo reklamjuostė ir įspėjimai."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
msgid "Syntax:"
msgstr "Sintaksė:"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces."
msgstr "Sintaksė: klientų antraščių pavadinimai yra atskirti tarpais."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
+msgid ""
+"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]"
msgstr "Sintakse: „target_pattern http_parent[:prievadas]“"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
+msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System"
msgstr "Sistema"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
+msgid "Template Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
+msgid "Temporary Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
"Naudojamas (-i) veiksmų failas (-ai). Leidžiamos kelios veiksmų failo "
"eilutės ir iš tikrųjų jos rekomenduojamos!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
"Adresas ir „TCP“ prievadas, kuriuo „Privoxy“ lauks prisijungimo/jungties "
"ryšio klientų užklausų."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
"Suspaudimo/Suglaudi(ni)mo lygis, kuris yra perduodamas – „zlib“ bibliotekai "
"suspaudžiant/suglaudinant buferinį turinį."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
+"located).<br />No trailing \"/\", please."
msgstr ""
-"Katalogas/Vietovė, kuriame/-oje vyksta visas žurnalinimas (t. y. kur yra "
-"žurnalo failas)."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located."
msgstr ""
"Katalogas/Vietovė, kuriame/-oje yra randami kiti konfigūracijos failai."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
"Filtro failuose yra turinio pakeitimo/redagavimo taisyklės, kuriose "
"naudojamos reguliarios išraiškos."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages."
msgstr ""
"Tipinės tinklo tarpuvartės; kompiuterijos sąsajos puslapiuose rodomas "
"įrenginio (t.y skleidėjo/vedėjo) pavadinimas."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory."
msgstr ""
"Naudojamo žurnalo failas. Failo pavadinimas, susijęs/-usia su žurnalo "
"katalogu/vietove."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
"Tvarka, kuria klientų antraštės yra surūšiuojamos, prieš jas persiunčiant."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
"Būsenos kodas – „Privoxy“ grąžinamas puslapiams, užblokuotiems naudojant – "
"„+tvarkyti kaip tuščią dokumentą“ (+handle-as-empty-document“)."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
"Pasitikėjimo mechanizmas yra eksperimentinė leidžiamųjų sąrašų sudarymo "
"funkcija, todėl ją reikia naudoti atsargiai."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-"Šios parinkties reikšmė yra svarbi tik tuo atveju, jei buvo suaktyvintas "
-"eksperimentinis pasitikėjimo mechanizmas."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
"Ši parinktis yra skirta tik derinimo/trukdžių šalinimo tikslams. Tai "
"smarkiai sumažins našumą."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
"Ši parinktis bus pašalinta būsimuose leidimuose, nes ji buvo pasenusi dėl "
"bendresnių antraštės žymų."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
"Šis skirtukas valdo su sauga susijusius – „Privoxy“ konfigūracijos aspektus."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
"Per kurį „SOCKS“ įgaliotinį (ir pasirinktinai į kurį pirminį „HTTP“ "
"įgaliotinį) turėtų būti maršrutizuotos savitos užklausos."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr ""
"Į kurį pirminį „HTTP“ įgaliotinį turėtų būti maršrutizuotos savitos "
"užklausos."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
+msgid "Toggle Status"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
+msgid "Tolerate pipelining"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
+msgid "Trust Info URL"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
+msgid "Trust file"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
+msgid ""
+"URL shown if access to an untrusted page is denied. Only applies if trust "
+"mechanism is enabled."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
+msgid "URL to documentation about the local Privoxy setup."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
+msgid "User Manual"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
msgid "User customizations"
msgstr "Naudotojo/Vartotojo tinkinimai"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr "Reikšmė nėra skaičius"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr "Reikšmė nėra tarp 0 ir 300-ų"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr "Reikšmė nėra tarp 0 ir 9-ų"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr "Reikšmė nėra tarp 1 ir 4096-ų"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr "Reikšmė nėra didesnis negu 0-is ar tuščias"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr ""
"Reikšmės diapazonas nuo 1-o iki 4096-ių, joks įrašas nenumatomas į 4096-ius"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "Versija"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr "Versijos informacija"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
msgid "Whether intercepted requests should be treated as valid."
msgstr ""
"Nepaisyti to, ar perimtos užklausos turėtų būti laikomos galiojančiomis."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
"Nesvarbu, ar „Privoxy“ atpažįsta specialias „HTTP“ antraštes, kad pakeistų "
"perjungimo būseną/būklę, ar ne."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery."
msgstr ""
"Nesvarbu, ar buferinis turinys yra suspaudžiamas/suglaudinamas prieš "
"pristatymą, ar ne."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
"Nesvarbu, ar išsiunčiami ryšiai, kurie buvo „gyvi/reaguojantys“, turėtų būti "
"bendrinami tarp skirtingų gaunamų ryšių, ar ne."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served."
msgstr ""
"Nesvarbu, ar srautinių duomenų apdorojimo užklausos tūrėtų būti "
"aptarnaujamos, ar ne."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr ""
"Nesvarbu, ar įgaliotojo autentifikavimas, naudojant – „Privoxy“ turėtų "
"veikti, ar ne."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used."
msgstr ""
"Nesvarbu, ar galima naudoti tinklalapio pagrįstą veiksmų failų rengyklę, ar "
"ne."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used."
msgstr ""
"Nesvarbu, ar galima naudoti tinklalapio pagrįstą perjungimo funkciją, ar ne."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
"Ar užklausos į – tipinę tinklo tarpuvartės; „Privoxy“ kompiuterijos sąsajos "
"(„CGI“) puslapius gali būti užblokuotos arba peradresuotos."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
"Ar tipinė tinklo tarpuvartės; kompiuterijos sąsaja ir/arba sietuvas turėtų "
"išlikti suderinama su neveikiančiais „HTTP“ klientais."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread."
msgstr "Nepaisant to, ar vykdyti tik vieną serverio giją."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what."
msgstr "Kas gali prieiti prie ko."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr "įdiegta"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr "arba aukštesnį"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr "reikalingas/-aujamas"
+#~ msgid ""
+#~ "A URL to be displayed in the error page that users will see if access to "
+#~ "an untrusted page is denied."
+#~ msgstr ""
+#~ "„URL“ – saitas, kuris bus rodomas klaidos puslapyje, kurį naudotojai/"
+#~ "vartotojai matys, jei prieiga prie nepatikimo puslapio yra uždrausta."
+
+#~ msgid ""
+#~ "A URL to documentation about the local Privoxy setup, configuration or "
+#~ "policies."
+#~ msgstr ""
+#~ "„URL“ – saitas į dokumentaciją apie vietinę – „Privoxy“ sąranką, "
+#~ "konfigūraciją arba politiką."
+
+#~ msgid "A directory where Privoxy can create temporary files."
+#~ msgstr "Katalogas/Vietovė, kurioje „Privoxy“ gali sukurti laikinus failus."
+
+#~ msgid "An alternative directory where the templates are loaded from."
+#~ msgstr "Alternatyvus/-i katalogas/vietovė, iš kurio yra įkeliami šablonai."
+
+#~ msgid "An email address to reach the Privoxy administrator."
+#~ msgstr "El. pašto adresas, norint pasiekti „Privoxy“ administratorių."
+
+#~ msgid ""
+#~ "Configure here the routing of HTTP requests through a chain of multiple "
+#~ "proxies. Note that parent proxies can severely decrease your privacy "
+#~ "level. Also specified here are SOCKS proxies."
+#~ msgstr ""
+#~ "Čia sukonfigūruokite „HTTP“ užklausų kelvadą per kelių įgaliotojų "
+#~ "grandinę. Atminkite, kad aukštutiniai įgaliotieji gali labai sumažinti "
+#~ "Jūsų privatumo lygį. Čia taip pat yra nurodyti „SOCKS“ įgaliotiniai."
+
+#~ msgid "Delay (in seconds) during system boot before Privoxy start"
+#~ msgstr ""
+#~ "Atidėjimas (sekundėmis), kol sistema kraunasi prieš „Privoxy“ paleidimą"
+
+#~ msgid "Directory does not exist!"
+#~ msgstr "Katalogas neegzistuoja!"
+
+#~ msgid "During delay ifup-events are not monitored !"
+#~ msgstr "Atidėjimo metu, „ifup“-įvykiai nėra stebimi!"
+
+#~ msgid ""
+#~ "Enable/Disable autostart of Privoxy on system startup and interface events"
+#~ msgstr ""
+#~ "Įjungti/Įgalinti┃Išjungti/Išgalinti automatinį „Privoxy“ paleidimą "
+#~ "sistemos paleidimo ir sąsajos ir/arba sietuvo įvykiuose"
+
+#~ msgid "File '%s' not found inside Configuration Directory"
+#~ msgstr "Failas „%s“ nerastas konfigūracijos kataloge (vietovėje)"
+
+#~ msgid "File not found or empty"
+#~ msgstr "Failas nerastas arba tuščias"
+
+#~ msgid "For help use link at the relevant option"
+#~ msgstr "Jei reikia pagalbos, naudokite atitinkamos parinkties nuorodą"
+
+#~ msgid ""
+#~ "If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+#~ "should not be able to bypass any blocks."
+#~ msgstr ""
+#~ "Jei įjungtas/įgalintas, „Privoxy“ paslepia nuorodą – „vis tiek eiti ten“. "
+#~ "Akivaizdu, kad naudotojas/vartotojas neturėtų apeiti jokių blokų."
+
+#~ msgid "Invalid email address"
+#~ msgstr "Negalimas el. pašto adresas"
+
+#~ msgid "Log File Viewer"
+#~ msgstr "Žurnalo failo žiūrovas/-ė"
+
+#~ msgid "Logging"
+#~ msgstr "Žurnalinimas"
+
+#~ msgid "Mandatory Input: No Data given!"
+#~ msgstr "Privaloma įvestis: jokių duomenų nepateikta!"
+
+#~ msgid "Mandatory Input: No Directory given!"
+#~ msgstr "Privaloma įvestis: joks katalogas (vietovė) nepateiktas!"
+
+#~ msgid "Mandatory Input: No Port given!"
+#~ msgstr "Privaloma įvestis: joks prievadas nepateiktas!"
+
+#~ msgid "Mandatory Input: No files given!"
+#~ msgstr "Privaloma įvestis: jokie failai nepateikti!"
+
+#~ msgid "Mandatory Input: No valid IPv4 address or host given!"
+#~ msgstr ""
+#~ "Privaloma įvestis: joks tinkamas ir galiojantis IPv4 adresas ar "
+#~ "skleidėjas/vedėjas nepateiktas!"
+
+#~ msgid "Mandatory Input: No valid IPv6 address given!"
+#~ msgstr ""
+#~ "Privaloma įvestis: joks tinkamas ir galiojantis IPv6 adresas nepateiktas!"
+
+#~ msgid "Mandatory Input: No valid Port given!"
+#~ msgstr "Privaloma įvestis: joks tinkamas prievadas nepateiktas!"
+
+#~ msgid "Miscellaneous"
+#~ msgstr "Pašaliniai"
+
+#~ msgid "NOT installed"
+#~ msgstr "Neįdiegta"
+
+#~ msgid "No trailing '/', please."
+#~ msgstr "Prašome rašyti be – „/“ (pasvirojo brūkšnio) skyrybos ženklo."
+
+#~ msgid ""
+#~ "Only when using 'external filters', Privoxy has to create temporary files."
+#~ msgstr ""
+#~ "Tik naudojant „išorinius filtrus“, „Privoxy“ turi sukurti laikinus failus."
+
+#~ msgid "Please install current version !"
+#~ msgstr "Prašome įdiegti dabartinę versiją !"
+
+#~ msgid "Please press [Read] button"
+#~ msgstr "Prašome paspausti [Skaityta] mygtuką"
+
+#~ msgid "Please update to the current version!"
+#~ msgstr "Prašome atnaujinti į naujausia versiją!"
+
+#~ msgid ""
+#~ "Privoxy is a non-caching web proxy with advanced filtering capabilities "
+#~ "for enhancing privacy, modifying web page data and HTTP headers, "
+#~ "controlling access, and removing ads and other obnoxious Internet junk."
+#~ msgstr ""
+#~ "„Privoxy“ yra talpykloje/podėlyje neskelbiamas tinklalapio įgaliotojas, "
+#~ "turintis pažangias filtravimo galimybes, skirtas privatumui didinti, "
+#~ "tinklalapių duomenims ir „HTTP“ antraštėms keisti, prieigai valdyti ir "
+#~ "reklamoms/skelbimams bei kitokiam nemalonaus interneto šlamštui pašalinti."
+
+#~ msgid "Read / Reread log file"
+#~ msgstr "Skaityti / Iš naujo perskaityti žurnalo failą"
+
+#~ msgid "Software package '%s' is not installed."
+#~ msgstr "Taikomosios programos paketas – „%s“ yra neįdiegtas."
+
+#~ msgid "Software package '%s' is outdated."
+#~ msgstr "Taikomosios programos paketas – „%s“ yra pasenęs."
+
+#~ msgid "Start"
+#~ msgstr "Pradėti"
+
+#~ msgid "Start / Stop"
+#~ msgstr "Pradėti / Stabdyti"
+
+#~ msgid "Start/Stop Privoxy WEB Proxy"
+#~ msgstr "Paleisti/Stabdyti „Privoxy WEB“ įgaliotąjį"
+
+#~ msgid ""
+#~ "The directory where all logging takes place (i.e. where the logfile is "
+#~ "located)."
+#~ msgstr ""
+#~ "Katalogas/Vietovė, kuriame/-oje vyksta visas žurnalinimas (t. y. kur yra "
+#~ "žurnalo failas)."
+
+#~ msgid ""
+#~ "The value of this option only matters if the experimental trust mechanism "
+#~ "has been activated."
+#~ msgstr ""
+#~ "Šios parinkties reikšmė yra svarbi tik tuo atveju, jei buvo suaktyvintas "
+#~ "eksperimentinis pasitikėjimo mechanizmas."
+
+#~ msgid "Value is not a number"
+#~ msgstr "Reikšmė nėra skaičius"
+
+#~ msgid "Value not between 0 and 300"
+#~ msgstr "Reikšmė nėra tarp 0 ir 300-ų"
+
+#~ msgid "Value not between 0 and 9"
+#~ msgstr "Reikšmė nėra tarp 0 ir 9-ų"
+
+#~ msgid "Value not between 1 and 4096"
+#~ msgstr "Reikšmė nėra tarp 1 ir 4096-ų"
+
+#~ msgid "Value not greater 0 or empty"
+#~ msgstr "Reikšmė nėra didesnis negu 0-is ar tuščias"
+
+#~ msgid "Version"
+#~ msgstr "Versija"
+
+#~ msgid "Version Information"
+#~ msgstr "Versijos informacija"
+
+#~ msgid "installed"
+#~ msgstr "įdiegta"
+
+#~ msgid "or higher"
+#~ msgstr "arba aukštesnį"
+
+#~ msgid "required"
+#~ msgstr "reikalingas/-aujamas"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2020-02-07 09:18+0000\n"
-"Language-Team: Marathi <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsprivoxy/mr/>\n"
-"Language: mr\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 3.11-dev\n"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
-msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
-msgid "Access Control"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
-msgid "Actions that are applied to all sites and maybe overruled later on."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
-msgid ""
-"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
-"server."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
-msgid "Boot delay"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
-msgid "CGI user interface"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
-msgid "Common Log Format"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
-msgid "Debug GIF de-animation"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
-msgid "Debug force feature"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
-msgid "Debug redirects"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
-msgid "Debug regular expression filters"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
-msgid "Disabled == Transparent Proxy Mode"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
-msgid "Documentation"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
-msgid "Enable proxy authentication forwarding"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
-msgid "Enable/Disable filtering when Privoxy starts."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
-msgid "Enabled"
-msgstr "सक्षम केले"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
-msgid ""
-"Enabling this option is NOT recommended if there is no parent proxy that "
-"requires authentication!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
-msgid "Files and Directories"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
-msgid "Forwarding"
-msgstr ""
-
-#: applications/luci-app-privoxy/root/usr/share/rpcd/acl.d/luci-app-privoxy.json:3
-msgid "Grant UCI access for luci-app-privoxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
-msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
-"should not be able to bypass any blocks."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
-msgid ""
-"If you intend to operate Privoxy for more users than just yourself, it might "
-"be a good idea to let them know how to reach you, what you block and why you "
-"do that, your policies, etc."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
-msgid "It is NOT recommended for the casual user."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
-msgid "Location of the Privoxy User Manual."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
-msgid "Log all data read from the network"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
-msgid "Log all data written to the network"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
-msgid "Log the applying actions"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
-msgid ""
-"Log the destination for each request Privoxy let through. See also 'Debug "
-"1024'."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
-msgid ""
-"Log the destination for requests Privoxy didn't let through, and the reason "
-"why."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
-msgid "Main actions file"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
-msgid "Mandatory Input: No File given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
-msgid "Maximum number of client connections that will be served."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
-msgid "Maximum size (in KB) of the buffer for content filtering."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
-msgid "Non-fatal errors - *we highly recommended enabling this*"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
-msgid ""
-"Number of seconds after which a socket times out if no data is received."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
-msgid ""
-"Number of seconds after which an open connection will no longer be reused."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
-msgid "Please read Privoxy manual for details!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
-msgid "Privoxy WEB proxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
-msgid ""
-"Privoxy can (and normally does) use a number of other files for additional "
-"configuration, help and logging. This section of the configuration file "
-"tells Privoxy where to find those other files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
-msgid "Show I/O status"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
-msgid "Show each connection status"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
-msgid "Show header parsing"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "प्रारंभ करा"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
-msgid "Startup banner and warnings."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
-msgid "Syntax:"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
-msgid "Syntax: Client header names delimited by spaces."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
-msgid "Syntax: target_pattern http_parent[:port]"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
-msgid "System"
-msgstr "प्रणाली"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
-msgid ""
-"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
-"are in fact recommended!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
-msgid ""
-"The address and TCP port on which Privoxy will listen for client requests."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
-msgid ""
-"The compression level that is passed to the zlib library when compressing "
-"buffered content."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
-msgid ""
-"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
-msgid "The directory where the other configuration files are located."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
-msgid ""
-"The filter files contain content modification rules that use regular "
-"expressions."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
-msgid "The hostname shown on the CGI pages."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
-msgid "The log file to use. File name, relative to log directory."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
-msgid "The order in which client headers are sorted before forwarding them."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
-msgid ""
-"The status code Privoxy returns for pages blocked with +handle-as-empty-"
-"document."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
-msgid ""
-"The trust mechanism is an experimental feature for building white-lists and "
-"should be used with care."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
-msgid ""
-"This option is only there for debugging purposes. It will drastically reduce "
-"performance."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
-msgid ""
-"This option will be removed in future releases as it has been obsoleted by "
-"the more general header taggers."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
-msgid ""
-"This tab controls the security-relevant aspects of Privoxy's configuration."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
-msgid ""
-"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
-"specific requests should be routed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
-msgid "To which parent HTTP proxy specific requests should be routed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
-msgid "User customizations"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
-msgid "Value range 1 to 4096, no entry defaults to 4096"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
-msgid "Whether intercepted requests should be treated as valid."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
-msgid ""
-"Whether or not Privoxy recognizes special HTTP headers to change toggle "
-"state."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
-msgid "Whether or not buffered content is compressed before delivery."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
-msgid ""
-"Whether or not outgoing connections that have been kept alive should be "
-"shared between different incoming connections."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
-msgid "Whether or not pipelined requests should be served."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
-msgid "Whether or not proxy authentication through Privoxy should work."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
-msgid "Whether or not the web-based actions file editor may be used."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
-msgid "Whether or not the web-based toggle feature may be used."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
-msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
-msgid ""
-"Whether the CGI interface should stay compatible with broken HTTP clients."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
-msgid "Whether to run only one server thread."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
-msgid "Who can access what."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2025-04-22 05:24+0000\n"
-"Language-Team: Malay <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsprivoxy/ms/>\n"
-"Language: ms\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 5.11.1-dev\n"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
-msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
-msgid "Access Control"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
-msgid "Actions that are applied to all sites and maybe overruled later on."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
-msgid ""
-"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
-"server."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
-msgid "Boot delay"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
-msgid "CGI user interface"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
-msgid "Common Log Format"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
-msgid "Debug GIF de-animation"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
-msgid "Debug force feature"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
-msgid "Debug redirects"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
-msgid "Debug regular expression filters"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
-msgid "Disabled == Transparent Proxy Mode"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
-msgid "Documentation"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
-msgid "Enable proxy authentication forwarding"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
-msgid "Enable/Disable filtering when Privoxy starts."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
-msgid "Enabled"
-msgstr "Dibolehkan"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
-msgid ""
-"Enabling this option is NOT recommended if there is no parent proxy that "
-"requires authentication!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
-msgid "Files and Directories"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
-msgid "Forwarding"
-msgstr ""
-
-#: applications/luci-app-privoxy/root/usr/share/rpcd/acl.d/luci-app-privoxy.json:3
-msgid "Grant UCI access for luci-app-privoxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
-msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
-"should not be able to bypass any blocks."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
-msgid ""
-"If you intend to operate Privoxy for more users than just yourself, it might "
-"be a good idea to let them know how to reach you, what you block and why you "
-"do that, your policies, etc."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
-msgid "It is NOT recommended for the casual user."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
-msgid "Location of the Privoxy User Manual."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
-msgid "Log all data read from the network"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
-msgid "Log all data written to the network"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
-msgid "Log the applying actions"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
-msgid ""
-"Log the destination for each request Privoxy let through. See also 'Debug "
-"1024'."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
-msgid ""
-"Log the destination for requests Privoxy didn't let through, and the reason "
-"why."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
-msgid "Main actions file"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
-msgid "Mandatory Input: No File given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
-msgid "Maximum number of client connections that will be served."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
-msgid "Maximum size (in KB) of the buffer for content filtering."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
-msgid "Non-fatal errors - *we highly recommended enabling this*"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
-msgid ""
-"Number of seconds after which a socket times out if no data is received."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
-msgid ""
-"Number of seconds after which an open connection will no longer be reused."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
-msgid "Please read Privoxy manual for details!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
-msgid "Privoxy WEB proxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
-msgid ""
-"Privoxy can (and normally does) use a number of other files for additional "
-"configuration, help and logging. This section of the configuration file "
-"tells Privoxy where to find those other files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
-msgid "Show I/O status"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
-msgid "Show each connection status"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
-msgid "Show header parsing"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
-msgid "Startup banner and warnings."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
-msgid "Syntax:"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
-msgid "Syntax: Client header names delimited by spaces."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
-msgid "Syntax: target_pattern http_parent[:port]"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
-msgid "System"
-msgstr "Sistem"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
-msgid ""
-"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
-"are in fact recommended!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
-msgid ""
-"The address and TCP port on which Privoxy will listen for client requests."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
-msgid ""
-"The compression level that is passed to the zlib library when compressing "
-"buffered content."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
-msgid ""
-"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
-msgid "The directory where the other configuration files are located."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
-msgid ""
-"The filter files contain content modification rules that use regular "
-"expressions."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
-msgid "The hostname shown on the CGI pages."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
-msgid "The log file to use. File name, relative to log directory."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
-msgid "The order in which client headers are sorted before forwarding them."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
-msgid ""
-"The status code Privoxy returns for pages blocked with +handle-as-empty-"
-"document."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
-msgid ""
-"The trust mechanism is an experimental feature for building white-lists and "
-"should be used with care."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
-msgid ""
-"This option is only there for debugging purposes. It will drastically reduce "
-"performance."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
-msgid ""
-"This option will be removed in future releases as it has been obsoleted by "
-"the more general header taggers."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
-msgid ""
-"This tab controls the security-relevant aspects of Privoxy's configuration."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
-msgid ""
-"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
-"specific requests should be routed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
-msgid "To which parent HTTP proxy specific requests should be routed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
-msgid "User customizations"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
-msgid "Value range 1 to 4096, no entry defaults to 4096"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
-msgid "Whether intercepted requests should be treated as valid."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
-msgid ""
-"Whether or not Privoxy recognizes special HTTP headers to change toggle "
-"state."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
-msgid "Whether or not buffered content is compressed before delivery."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
-msgid ""
-"Whether or not outgoing connections that have been kept alive should be "
-"shared between different incoming connections."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
-msgid "Whether or not pipelined requests should be served."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
-msgid "Whether or not proxy authentication through Privoxy should work."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
-msgid "Whether or not the web-based actions file editor may be used."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
-msgid "Whether or not the web-based toggle feature may be used."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
-msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
-msgid ""
-"Whether the CGI interface should stay compatible with broken HTTP clients."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
-msgid "Whether to run only one server thread."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
-msgid "Who can access what."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2024-01-03 18:37+0000\n"
-"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsprivoxy/nb_NO/>\n"
-"Language: nb_NO\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.4-dev\n"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
-msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
-msgid "Access Control"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
-msgid "Actions that are applied to all sites and maybe overruled later on."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
-msgid ""
-"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
-"server."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
-msgid "Boot delay"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
-msgid "CGI user interface"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
-msgid "Common Log Format"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
-msgid "Debug GIF de-animation"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
-msgid "Debug force feature"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
-msgid "Debug redirects"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
-msgid "Debug regular expression filters"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
-msgid "Disabled == Transparent Proxy Mode"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
-msgid "Documentation"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
-msgid "Enable proxy authentication forwarding"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
-msgid "Enable/Disable filtering when Privoxy starts."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
-msgid "Enabled"
-msgstr "Påskrudd"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
-msgid ""
-"Enabling this option is NOT recommended if there is no parent proxy that "
-"requires authentication!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
-msgid "Files and Directories"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
-msgid "Forwarding"
-msgstr ""
-
-#: applications/luci-app-privoxy/root/usr/share/rpcd/acl.d/luci-app-privoxy.json:3
-msgid "Grant UCI access for luci-app-privoxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
-msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
-"should not be able to bypass any blocks."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
-msgid ""
-"If you intend to operate Privoxy for more users than just yourself, it might "
-"be a good idea to let them know how to reach you, what you block and why you "
-"do that, your policies, etc."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
-msgid "It is NOT recommended for the casual user."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
-msgid "Location of the Privoxy User Manual."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
-msgid "Log all data read from the network"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
-msgid "Log all data written to the network"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
-msgid "Log the applying actions"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
-msgid ""
-"Log the destination for each request Privoxy let through. See also 'Debug "
-"1024'."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
-msgid ""
-"Log the destination for requests Privoxy didn't let through, and the reason "
-"why."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
-msgid "Main actions file"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
-msgid "Mandatory Input: No File given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
-msgid "Maximum number of client connections that will be served."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
-msgid "Maximum size (in KB) of the buffer for content filtering."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
-msgid "Non-fatal errors - *we highly recommended enabling this*"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
-msgid ""
-"Number of seconds after which a socket times out if no data is received."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
-msgid ""
-"Number of seconds after which an open connection will no longer be reused."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
-msgid "Please read Privoxy manual for details!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
-msgid "Privoxy WEB proxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
-msgid ""
-"Privoxy can (and normally does) use a number of other files for additional "
-"configuration, help and logging. This section of the configuration file "
-"tells Privoxy where to find those other files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
-msgid "Show I/O status"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
-msgid "Show each connection status"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
-msgid "Show header parsing"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "Start"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
-msgid "Startup banner and warnings."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
-msgid "Syntax:"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
-msgid "Syntax: Client header names delimited by spaces."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
-msgid "Syntax: target_pattern http_parent[:port]"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
-msgid "System"
-msgstr "System"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
-msgid ""
-"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
-"are in fact recommended!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
-msgid ""
-"The address and TCP port on which Privoxy will listen for client requests."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
-msgid ""
-"The compression level that is passed to the zlib library when compressing "
-"buffered content."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
-msgid ""
-"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
-msgid "The directory where the other configuration files are located."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
-msgid ""
-"The filter files contain content modification rules that use regular "
-"expressions."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
-msgid "The hostname shown on the CGI pages."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
-msgid "The log file to use. File name, relative to log directory."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
-msgid "The order in which client headers are sorted before forwarding them."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
-msgid ""
-"The status code Privoxy returns for pages blocked with +handle-as-empty-"
-"document."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
-msgid ""
-"The trust mechanism is an experimental feature for building white-lists and "
-"should be used with care."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
-msgid ""
-"This option is only there for debugging purposes. It will drastically reduce "
-"performance."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
-msgid ""
-"This option will be removed in future releases as it has been obsoleted by "
-"the more general header taggers."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
-msgid ""
-"This tab controls the security-relevant aspects of Privoxy's configuration."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
-msgid ""
-"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
-"specific requests should be routed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
-msgid "To which parent HTTP proxy specific requests should be routed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
-msgid "User customizations"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
-msgid "Value range 1 to 4096, no entry defaults to 4096"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "Versjon"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
-msgid "Whether intercepted requests should be treated as valid."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
-msgid ""
-"Whether or not Privoxy recognizes special HTTP headers to change toggle "
-"state."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
-msgid "Whether or not buffered content is compressed before delivery."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
-msgid ""
-"Whether or not outgoing connections that have been kept alive should be "
-"shared between different incoming connections."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
-msgid "Whether or not pipelined requests should be served."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
-msgid "Whether or not proxy authentication through Privoxy should work."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
-msgid "Whether or not the web-based actions file editor may be used."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
-msgid "Whether or not the web-based toggle feature may be used."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
-msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
-msgid ""
-"Whether the CGI interface should stay compatible with broken HTTP clients."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
-msgid "Whether to run only one server thread."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
-msgid "Who can access what."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.10-dev\n"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
+"A directory where Privoxy can create temporary files.<br /><strong>Only when "
+"using 'external filters', Privoxy has to create temporary files.</strong>"
msgstr ""
-"Een URL die getoond wordt op de error pagina die gebruikers zullen zien als "
-"toegang tot een onvertrouwde pagina is geblokkeerd."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
+msgid "Accept intercepted requests"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "Access Control"
msgstr "Toegangsbeheer"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
+msgid "Action Files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
+msgid "Admin Email"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
+msgid "Allow CGI request crunching"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
+msgid ""
+"An alternative directory where the templates are loaded from.<br />No "
+"trailing \"/\", please."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
+msgid "Buffer Limit"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
+msgid "Client header order"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
+msgid "Compression level"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
+msgid "Configuration Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
+msgid "Configure the Privoxy proxy daemon settings."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
+msgid "Connection sharing"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
+msgid "Debug 1"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
+msgid "Debug 1024"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
+msgid "Debug 128"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
+msgid "Debug 16"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
+msgid "Debug 2"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
+msgid "Debug 2048"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
+msgid "Debug 256"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
+msgid "Debug 32"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
+msgid "Debug 32768"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
+msgid "Debug 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
+msgid "Debug 4096"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
+msgid "Debug 512"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
+msgid "Debug 64"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
+msgid "Debug 65536"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
+msgid "Debug 8"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
+msgid "Debug 8192"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
+msgid "Default server timeout"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
+msgid "Delay (in seconds) during system boot before Privoxy starts."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
+msgid "Deny access"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "Documentation"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
+msgid "Email address for the Privoxy administrator."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
+msgid "Enable action file editor"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
+msgid "Enable compression"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
+msgid "Enable remote toggle"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
+msgid "Enable remote toggle via HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
+msgid "Enable/Disable autostart of Privoxy"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
+msgid "Enforce page blocking"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
+msgid "Files and Directories"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
-msgid "Files and Directories"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
+msgid "Filter files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
+msgid "Forward HTTP"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
+msgid "Forward SOCKS 4"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
+msgid "Forward SOCKS 4A"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
+msgid "Forward SOCKS 5"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
+msgid "Forward SOCKS 5t"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding"
msgstr ""
msgid "Grant UCI access for luci-app-privoxy"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
+msgid "Handle as empty doc returns ok"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+"If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"do that, your policies, etc."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
+msgid "It is NOT recommended for the casual user."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
-msgid "It is NOT recommended for the casual user."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
+msgid "Keep-alive timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
+msgid "Listen addresses"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
+msgid "Log Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
+msgid "Log File"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Main actions file"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No File given!"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
+msgid "Max. client connections"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
msgid "Maximum number of client connections that will be served."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
+msgid "Misc"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
+msgid "Permit access"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
+msgid "Please read Privoxy manual for details!"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
-msgid "Please read Privoxy manual for details!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
+msgid "Privoxy"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
+msgid "Privoxy Settings"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
+#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"tells Privoxy where to find those other files."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
+msgid "Proxy Info URL"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Show I/O status"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
+msgid "Single Threaded"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
+msgid "Socket timeout"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
+msgid "Split large forms"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Startup banner and warnings."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
msgid "Syntax:"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
+msgid ""
+"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
+msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
+msgid "Template Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
+msgid "Temporary Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
+"located).<br />No trailing \"/\", please."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
-msgid "User customizations"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
+msgid "Toggle Status"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
+msgid "Tolerate pipelining"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
+msgid "Trust Info URL"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
+msgid "Trust file"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
+msgid ""
+"URL shown if access to an untrusted page is denied. Only applies if trust "
+"mechanism is enabled."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
+msgid "URL to documentation about the local Privoxy setup."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
-msgid "Value range 1 to 4096, no entry defaults to 4096"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
+msgid "User Manual"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
+msgid "User customizations"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
+msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
msgid "Whether intercepted requests should be treated as valid."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr ""
+#~ msgid ""
+#~ "A URL to be displayed in the error page that users will see if access to "
+#~ "an untrusted page is denied."
+#~ msgstr ""
+#~ "Een URL die getoond wordt op de error pagina die gebruikers zullen zien "
+#~ "als toegang tot een onvertrouwde pagina is geblokkeerd."
"|| n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 5.6-dev\n"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
+"A directory where Privoxy can create temporary files.<br /><strong>Only when "
+"using 'external filters', Privoxy has to create temporary files.</strong>"
msgstr ""
-"Adres URL, wyświetlany na stronie błędu, który zobaczą użytkownicy, jeśli "
-"dostęp do podejrzanej strony zostanie zablokowany."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
+msgid "Accept intercepted requests"
msgstr ""
-"Adres URL do dokumentacji dotyczącej lokalnych ustawień, konfiguracji lub "
-"zasad Privoxy."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr "Katalog, w którym Privoxy może tworzyć pliki tymczasowe."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "Access Control"
msgstr "Kontrola dostępu"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
+msgid "Action Files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
"Działania, które są stosowane w odniesieniu do wszystkich obiektów i być "
"może zostaną później wycofane."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr "Alternatywny katalog, z którego ładowane są szablony."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
+msgid "Admin Email"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr "Adres e-mail, aby skontaktować się z administratorem Privoxy."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
+msgid "Allow CGI request crunching"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
+msgid ""
+"An alternative directory where the templates are loaded from.<br />No "
+"trailing \"/\", please."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
"Limit czasu przechowywania po stronie serwera (w sekundach), jeśli nie "
"został określony przez serwer."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay"
msgstr "Opóźnienie rozruchu"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
+msgid "Buffer Limit"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface"
msgstr "Interfejs użytkownika CGI"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
+msgid "Client header order"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format"
msgstr "Wspólny format dziennika"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
+msgid "Compression level"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
+msgid "Configuration Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
+msgid "Configure the Privoxy proxy daemon settings."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
+msgid "Connection sharing"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
+msgid "Debug"
msgstr ""
-"Skonfiguruj tutaj trasowanie żądań HTTP przez sieć wielu serwerów proxy. "
-"Należy pamiętać, że macierzyste serwery proxy mogą znacznie zmniejszyć "
-"poziom prywatności. Również określone tutaj są SOCKS proxies."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
+msgid "Debug 1"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
+msgid "Debug 1024"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
+msgid "Debug 128"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
+msgid "Debug 16"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
+msgid "Debug 2"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
+msgid "Debug 2048"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
+msgid "Debug 256"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
+msgid "Debug 32"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
+msgid "Debug 32768"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
+msgid "Debug 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
+msgid "Debug 4096"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
+msgid "Debug 512"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
+msgid "Debug 64"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
+msgid "Debug 65536"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
+msgid "Debug 8"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
+msgid "Debug 8192"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation"
msgstr "Debugowanie GIF de-animacji"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature"
msgstr "Wymuś debugowanie funkcji"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects"
msgstr "Debuguj przekierowania"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters"
msgstr "Debuguj filtry wyrażeń regularnych"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
+msgid "Default server timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
+msgid "Delay (in seconds) during system boot before Privoxy starts."
msgstr ""
-"Opóźnienie (w sekundach) podczas rozruchu systemu przed uruchomieniem Privoxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr "Katalog nie istnieje!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
+msgid "Deny access"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode"
msgstr "Wyłączone == Tryb transparentnego serwera proxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "Documentation"
msgstr "Dokumentacja"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr "Podczas zwłoki zdarzenia ifup-events nie są monitorowane!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
+msgid "Email address for the Privoxy administrator."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
+msgid "Enable action file editor"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
+msgid "Enable compression"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding"
msgstr "Włącz przekazywanie danych uwierzytelniających proxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
+msgid "Enable remote toggle"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
+msgid "Enable remote toggle via HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
+msgid "Enable/Disable autostart of Privoxy"
msgstr ""
-"Włączanie/wyłączanie autostartu Privoxy przy uruchamianiu systemu i "
-"zdarzeniach interfejsu"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts."
msgstr "Włączenie/wyłączenie filtrowania po uruchomieniu Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled"
msgstr "Włączone"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
"Włączenie tej opcji NIE jest zalecane, jeśli nie ma macierzystego serwera "
"proxy, który wymaga uwierzytelnienia!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr "Plik '%s' nie został znaleziony wewnątrz katalogu konfiguracji"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr "Plik nie został znaleziony lub jest pusty"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
+msgid "Enforce page blocking"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid "Files and Directories"
msgstr "Pliki i katalogi"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr "Aby uzyskać pomoc, skorzystaj z odnośnika w odpowiedniej opcji"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
+msgid "Filter files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
+msgid "Forward HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
+msgid "Forward SOCKS 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
+msgid "Forward SOCKS 4A"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
+msgid "Forward SOCKS 5"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
+msgid "Forward SOCKS 5t"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding"
msgstr "Przekazywanie"
msgid "Grant UCI access for luci-app-privoxy"
msgstr "Przyznaj luci-app-privoxy dostęp do UCI"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
+msgid "Handle as empty doc returns ok"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+"If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
-"Jeśli jest włączona, Privoxy ukrywa link \"idź tam i tak\". Użytkownik "
-"oczywiście nie powinien mieć możliwości obejścia żadnych blokad."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"tylko siebie, dobrym pomysłem może być poinformowanie ich o tym, jak do "
"Ciebie dotrzeć, co blokujesz i dlaczego to robisz, twoje zasady, itp."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr "Nieprawidłowy adres e-mail"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
msgid "It is NOT recommended for the casual user."
msgstr "To NIE jest zalecane dla zwykłego użytkownika."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
+msgid "Keep-alive timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
+msgid "Listen addresses"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual."
msgstr "Lokalizacja instrukcji obsługi Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr "Przeglądarka plików dziennika"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
+msgid "Log Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
+msgid "Log File"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network"
msgstr "Rejestruj wszystkie dane odczytane z sieci"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network"
msgstr "Rejestruj wszystkie dane zapisane w sieci"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions"
msgstr "Rejestruj zastosowane operacje"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
"Rejestruj miejsce docelowe dla każdego żądania przepuszczającego Privoxy. "
"Zobacz również \"Debug 1024\"."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
"Rejestruj miejsce docelowe dla żądań nie przepuszczających Privoxy i powód, "
"dla którego."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr "Logowanie"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Main actions file"
msgstr "Główny plik działań"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr "Obowiązkowe wejście: Nie podano żadnych danych!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr "Obowiązkowe wejście: Nie podano katalogu!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No File given!"
msgstr "Obowiązkowe wejście: Nie podano pliku!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr "Obowiązkowe wejście: Nie podano portu!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr "Obowiązkowe wejście: Nie podano żadnych plików!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
-msgstr "Obowiązkowe wejście: Nie podano poprawnego adresu IPv4 ani hosta!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr "Obowiązkowe wejście: Nie podano poprawnego adresu IPv6!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr "Obowiązkowe wejście: Nie podano aktualnego Portu!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
+msgid "Max. client connections"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
msgid "Maximum number of client connections that will be served."
msgstr "Maksymalna liczba połączeń z klientami, które będą obsługiwane."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr "Maksymalny rozmiar (w KB) bufora do filtrowania treści."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr "Różne"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr "Nie zainstalowany"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr "Żadnego tropienia '/', proszę."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
+msgid "Misc"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr "Non-fatal errors - *zalecamy, aby to włączyć*"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
"Liczba sekund, po których gniazdo się wyłącza w przypadku braku danych."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
"Liczba sekund, po których otwarte połączenie nie będzie już używane ponownie."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
+msgid "Permit access"
msgstr ""
-"Tylko w przypadku używania \"filtrów zewnętrznych\", Privoxy musi tworzyć "
-"pliki tymczasowe."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr "Zainstaluj aktualną wersję!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr "Proszę nacisnąć przycisk [Czytaj]"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Please read Privoxy manual for details!"
msgstr ""
"Prosimy o zapoznanie się z instrukcją Privoxy, aby uzyskać szczegółowe "
"informacje!"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr "Proszę zaktualizować do aktualnej wersji!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
+msgid "Privoxy"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
+msgid "Privoxy Settings"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
+#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy"
msgstr "Privoxy WEB proxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"konfiguracji, pomocy i logowania. Ta sekcja pliku konfiguracyjnego informuje "
"Privoxy, gdzie można znaleźć te inne pliki."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
+msgid "Proxy Info URL"
msgstr ""
-"Privoxy to niezawodne proxy internetowe z zaawansowanymi możliwościami "
-"filtrowania w celu zwiększenia prywatności, modyfikowania danych strony "
-"internetowej i nagłówków HTTP, kontrolowania dostępu oraz usuwania reklam i "
-"innych okropnych śmieci internetowych."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr "Wczytaj / Ponownie wczytaj plik dziennika"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Show I/O status"
msgstr "Pokaż status We/Wy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status"
msgstr "Pokaż status każdego połączenia"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing"
msgstr "Pokaż nagłówek ścieżki"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr "Pakiet '%s' nie jest zainstalowany."
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr "Pakiet '%s' jest przestarzały."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "Uruchom"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
+msgid "Single Threaded"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr "Start/Stop"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
+msgid "Socket timeout"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr "Włącz/Wyłącz Privoxy WEB Proxy"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
+msgid "Split large forms"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Startup banner and warnings."
msgstr "Baner startowy i ostrzeżenia."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
msgid "Syntax:"
msgstr "Składnia:"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces."
msgstr "Składnia: nazwy nagłówków klienta rozdzielone spacjami."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
+msgid ""
+"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]"
msgstr "Składnia: target_pattern http_parent[:port]"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
+msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System"
msgstr "System"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
+msgid "Template Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
+msgid "Temporary Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
"Plik(i) działań do użycia. Wiele linii pliku akcji jest dozwolonych, i w "
"rzeczywistości są one zalecane!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
"Adres i port TCP, na którym Privoxy będzie nasłuchiwać żądania klientów."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
"Poziom kompresji, który jest przekazywany do biblioteki zlib podczas "
"kompresji zawartości buforowanej."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
+"located).<br />No trailing \"/\", please."
msgstr ""
-"Katalog, w którym odbywa się całe logowanie (tzn. w którym znajduje się plik "
-"dziennika)."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located."
msgstr "Katalog, w którym znajdują się pozostałe pliki konfiguracyjne."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
"Pliki filtrów zawierające reguły modyfikacji zawartości, które wykorzystują "
"wyrażenia regularne."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages."
msgstr "Nazwa hosta wyświetlana na stronach CGI."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory."
msgstr ""
"Plik dziennika, którego należy użyć. Nazwa pliku, odnosząca się do katalogu "
"logu."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
"Kolejność, w jakiej nagłówki klientów są sortowane przed ich przekazaniem."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
"Kod statusu Privoxy jest zwracany dla stron zablokowanych za pomocą +handle-"
"as-empty-document."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
"Mechanizm zaufania jest cechą eksperymentalną do budowania białych list i "
"powinien być stosowany ostrożnie."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-"Wartość tej opcji ma znaczenie tylko wtedy, gdy eksperymentalny mechanizm "
-"zaufania został aktywowany."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
msgstr ""
"Opcja ta służy tylko do debugowania. Drastycznie zmniejszy ona wydajność."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
"Opcja ta zostanie usunięta w przyszłych wydaniach, ponieważ jest "
"przestarzała z powodu bardziej ogólnych tagów nagłówkowych."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
"Ta zakładka kontroluje istotne dla bezpieczeństwa aspekty konfiguracji "
"Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
"Przez który SOCKS proxy (i opcjonalnie do którego z nadrzędnych HTTP proxy) "
"powinny być kierowane określone żądania."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr ""
"Do którego urządzenia macierzystego HTTP proxy powinny być kierowane "
"określone żądania."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
+msgid "Toggle Status"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
+msgid "Tolerate pipelining"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
+msgid "Trust Info URL"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
+msgid "Trust file"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
+msgid ""
+"URL shown if access to an untrusted page is denied. Only applies if trust "
+"mechanism is enabled."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
+msgid "URL to documentation about the local Privoxy setup."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
+msgid "User Manual"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
msgid "User customizations"
msgstr "Modyfikacje użytkownika"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr "Wartość nie jest liczbą"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr "Wartość nie mieszcząca się w przedziale od 0 do 300"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr "Wartość nie mieszcząca się w przedziale od 0 do 9"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr "Wartość nie mieszcząca się w przedziale od 1 do 4096"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr "Wartość nie większa niż 0 lub pusta"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr "Zakres wartości od 1 do 4096, brak wpisów domyślnych do 4096"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "Wersja"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr "Informacja o wersji"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
msgid "Whether intercepted requests should be treated as valid."
msgstr "Czy przechwycone zapytania powinny być traktowane jako ważne."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
"Czy Privoxy rozpoznaje specjalne nagłówki HTTP, aby zmienić stan "
"przełącznika, czy też nie."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery."
msgstr ""
"Czy zawartość buforowana jest kompresowana przed przekazaniem, czy też nie."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
"Czy połączenia wychodzące, które zostały utrzymane przy życiu, powinny być "
"dzielone między różne połączenia przychodzące, czy też nie."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served."
msgstr "Czy prośby powinny być doręczane w formie potokowej, czy też nie."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr "Czy uwierzytelnienie przez Privoxy powinno działać, czy też nie."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used."
msgstr "Czy można korzystać z internetowego edytora plików akcji, czy też nie."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used."
msgstr ""
"Czy można korzystać z funkcji przełączania stron internetowych, czy też nie."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
"Czy żądania do stron CGI Privoxy mogą być zablokowane lub przekierowane."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
"Czy interfejs CGI powinien pozostać kompatybilny z uszkodzonymi klientami "
"HTTP."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread."
msgstr "Czy uruchomić tylko jeden wątek serwera."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what."
msgstr "Kto ma dostęp do czego."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr "zainstalowany"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr "lub wyżej"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr "wymagany"
+#~ msgid ""
+#~ "A URL to be displayed in the error page that users will see if access to "
+#~ "an untrusted page is denied."
+#~ msgstr ""
+#~ "Adres URL, wyświetlany na stronie błędu, który zobaczą użytkownicy, jeśli "
+#~ "dostęp do podejrzanej strony zostanie zablokowany."
+
+#~ msgid ""
+#~ "A URL to documentation about the local Privoxy setup, configuration or "
+#~ "policies."
+#~ msgstr ""
+#~ "Adres URL do dokumentacji dotyczącej lokalnych ustawień, konfiguracji lub "
+#~ "zasad Privoxy."
+
+#~ msgid "A directory where Privoxy can create temporary files."
+#~ msgstr "Katalog, w którym Privoxy może tworzyć pliki tymczasowe."
+
+#~ msgid "An alternative directory where the templates are loaded from."
+#~ msgstr "Alternatywny katalog, z którego ładowane są szablony."
+
+#~ msgid "An email address to reach the Privoxy administrator."
+#~ msgstr "Adres e-mail, aby skontaktować się z administratorem Privoxy."
+
+#~ msgid ""
+#~ "Configure here the routing of HTTP requests through a chain of multiple "
+#~ "proxies. Note that parent proxies can severely decrease your privacy "
+#~ "level. Also specified here are SOCKS proxies."
+#~ msgstr ""
+#~ "Skonfiguruj tutaj trasowanie żądań HTTP przez sieć wielu serwerów proxy. "
+#~ "Należy pamiętać, że macierzyste serwery proxy mogą znacznie zmniejszyć "
+#~ "poziom prywatności. Również określone tutaj są SOCKS proxies."
+
+#~ msgid "Delay (in seconds) during system boot before Privoxy start"
+#~ msgstr ""
+#~ "Opóźnienie (w sekundach) podczas rozruchu systemu przed uruchomieniem "
+#~ "Privoxy"
+
+#~ msgid "Directory does not exist!"
+#~ msgstr "Katalog nie istnieje!"
+
+#~ msgid "During delay ifup-events are not monitored !"
+#~ msgstr "Podczas zwłoki zdarzenia ifup-events nie są monitorowane!"
+
+#~ msgid ""
+#~ "Enable/Disable autostart of Privoxy on system startup and interface events"
+#~ msgstr ""
+#~ "Włączanie/wyłączanie autostartu Privoxy przy uruchamianiu systemu i "
+#~ "zdarzeniach interfejsu"
+
+#~ msgid "File '%s' not found inside Configuration Directory"
+#~ msgstr "Plik '%s' nie został znaleziony wewnątrz katalogu konfiguracji"
+
+#~ msgid "File not found or empty"
+#~ msgstr "Plik nie został znaleziony lub jest pusty"
+
+#~ msgid "For help use link at the relevant option"
+#~ msgstr "Aby uzyskać pomoc, skorzystaj z odnośnika w odpowiedniej opcji"
+
+#~ msgid ""
+#~ "If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+#~ "should not be able to bypass any blocks."
+#~ msgstr ""
+#~ "Jeśli jest włączona, Privoxy ukrywa link \"idź tam i tak\". Użytkownik "
+#~ "oczywiście nie powinien mieć możliwości obejścia żadnych blokad."
+
+#~ msgid "Invalid email address"
+#~ msgstr "Nieprawidłowy adres e-mail"
+
+#~ msgid "Log File Viewer"
+#~ msgstr "Przeglądarka plików dziennika"
+
+#~ msgid "Logging"
+#~ msgstr "Logowanie"
+
+#~ msgid "Mandatory Input: No Data given!"
+#~ msgstr "Obowiązkowe wejście: Nie podano żadnych danych!"
+
+#~ msgid "Mandatory Input: No Directory given!"
+#~ msgstr "Obowiązkowe wejście: Nie podano katalogu!"
+
+#~ msgid "Mandatory Input: No Port given!"
+#~ msgstr "Obowiązkowe wejście: Nie podano portu!"
+
+#~ msgid "Mandatory Input: No files given!"
+#~ msgstr "Obowiązkowe wejście: Nie podano żadnych plików!"
+
+#~ msgid "Mandatory Input: No valid IPv4 address or host given!"
+#~ msgstr "Obowiązkowe wejście: Nie podano poprawnego adresu IPv4 ani hosta!"
+
+#~ msgid "Mandatory Input: No valid IPv6 address given!"
+#~ msgstr "Obowiązkowe wejście: Nie podano poprawnego adresu IPv6!"
+
+#~ msgid "Mandatory Input: No valid Port given!"
+#~ msgstr "Obowiązkowe wejście: Nie podano aktualnego Portu!"
+
+#~ msgid "Miscellaneous"
+#~ msgstr "Różne"
+
+#~ msgid "NOT installed"
+#~ msgstr "Nie zainstalowany"
+
+#~ msgid "No trailing '/', please."
+#~ msgstr "Żadnego tropienia '/', proszę."
+
+#~ msgid ""
+#~ "Only when using 'external filters', Privoxy has to create temporary files."
+#~ msgstr ""
+#~ "Tylko w przypadku używania \"filtrów zewnętrznych\", Privoxy musi tworzyć "
+#~ "pliki tymczasowe."
+
+#~ msgid "Please install current version !"
+#~ msgstr "Zainstaluj aktualną wersję!"
+
+#~ msgid "Please press [Read] button"
+#~ msgstr "Proszę nacisnąć przycisk [Czytaj]"
+
+#~ msgid "Please update to the current version!"
+#~ msgstr "Proszę zaktualizować do aktualnej wersji!"
+
+#~ msgid ""
+#~ "Privoxy is a non-caching web proxy with advanced filtering capabilities "
+#~ "for enhancing privacy, modifying web page data and HTTP headers, "
+#~ "controlling access, and removing ads and other obnoxious Internet junk."
+#~ msgstr ""
+#~ "Privoxy to niezawodne proxy internetowe z zaawansowanymi możliwościami "
+#~ "filtrowania w celu zwiększenia prywatności, modyfikowania danych strony "
+#~ "internetowej i nagłówków HTTP, kontrolowania dostępu oraz usuwania reklam "
+#~ "i innych okropnych śmieci internetowych."
+
+#~ msgid "Read / Reread log file"
+#~ msgstr "Wczytaj / Ponownie wczytaj plik dziennika"
+
+#~ msgid "Software package '%s' is not installed."
+#~ msgstr "Pakiet '%s' nie jest zainstalowany."
+
+#~ msgid "Software package '%s' is outdated."
+#~ msgstr "Pakiet '%s' jest przestarzały."
+
+#~ msgid "Start"
+#~ msgstr "Uruchom"
+
+#~ msgid "Start / Stop"
+#~ msgstr "Start/Stop"
+
+#~ msgid "Start/Stop Privoxy WEB Proxy"
+#~ msgstr "Włącz/Wyłącz Privoxy WEB Proxy"
+
+#~ msgid ""
+#~ "The directory where all logging takes place (i.e. where the logfile is "
+#~ "located)."
+#~ msgstr ""
+#~ "Katalog, w którym odbywa się całe logowanie (tzn. w którym znajduje się "
+#~ "plik dziennika)."
+
+#~ msgid ""
+#~ "The value of this option only matters if the experimental trust mechanism "
+#~ "has been activated."
+#~ msgstr ""
+#~ "Wartość tej opcji ma znaczenie tylko wtedy, gdy eksperymentalny mechanizm "
+#~ "zaufania został aktywowany."
+
+#~ msgid "Value is not a number"
+#~ msgstr "Wartość nie jest liczbą"
+
+#~ msgid "Value not between 0 and 300"
+#~ msgstr "Wartość nie mieszcząca się w przedziale od 0 do 300"
+
+#~ msgid "Value not between 0 and 9"
+#~ msgstr "Wartość nie mieszcząca się w przedziale od 0 do 9"
+
+#~ msgid "Value not between 1 and 4096"
+#~ msgstr "Wartość nie mieszcząca się w przedziale od 1 do 4096"
+
+#~ msgid "Value not greater 0 or empty"
+#~ msgstr "Wartość nie większa niż 0 lub pusta"
+
+#~ msgid "Version"
+#~ msgstr "Wersja"
+
+#~ msgid "Version Information"
+#~ msgstr "Informacja o wersji"
+
+#~ msgid "installed"
+#~ msgstr "zainstalowany"
+
+#~ msgid "or higher"
+#~ msgstr "lub wyżej"
+
+#~ msgid "required"
+#~ msgstr "wymagany"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 5.7-dev\n"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
+"A directory where Privoxy can create temporary files.<br /><strong>Only when "
+"using 'external filters', Privoxy has to create temporary files.</strong>"
msgstr ""
-"A URL a ser exibida na página de erro que os utilizadores verão se o acesso "
-"a uma página não confiável é negado."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
+msgid "Accept intercepted requests"
msgstr ""
-"A URL para a documentação sobre o Privoxy local, configuração ou políticas."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr "Um diretório onde Privoxy pode criar ficheiros temporários."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "Access Control"
msgstr "Controlo de Acesso"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
+msgid "Action Files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
"Ações que são aplicadas a todos as páginas e talvez descartado mais tarde."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr "Um diretório alternativo de onde os modelos são carregados."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
+msgid "Admin Email"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr "Um endereço de e-mail para alcançar o administrador do Privoxy."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
+msgid "Allow CGI request crunching"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
+msgid ""
+"An alternative directory where the templates are loaded from.<br />No "
+"trailing \"/\", please."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
"Tempo limite, em segundos, da manutenção da conexão (keep-alive) do servidor "
"se não for especificado."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay"
msgstr "Atraso de iniciação"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
+msgid "Buffer Limit"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface"
msgstr "Interface de utilizador CGI"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
+msgid "Client header order"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format"
msgstr "Formato de registos (log) comum"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
+msgid "Compression level"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
+msgid "Configuration Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
+msgid "Configure the Privoxy proxy daemon settings."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
+msgid "Connection sharing"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
+msgid "Debug"
msgstr ""
-"Configure aqui o encaminhamento de pedidos HTTP através de uma cadeia de "
-"múltiplos proxies. Note-se que proxies pai pode diminuir muito o nível de "
-"privacidade. Também serão aceitos proxies SOCKS."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
+msgid "Debug 1"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
+msgid "Debug 1024"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
+msgid "Debug 128"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
+msgid "Debug 16"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
+msgid "Debug 2"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
+msgid "Debug 2048"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
+msgid "Debug 256"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
+msgid "Debug 32"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
+msgid "Debug 32768"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
+msgid "Debug 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
+msgid "Debug 4096"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
+msgid "Debug 512"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
+msgid "Debug 64"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
+msgid "Debug 65536"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
+msgid "Debug 8"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
+msgid "Debug 8192"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation"
msgstr "Depurar de-animação GIF"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature"
msgstr "Recurso de depuração forçado"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects"
msgstr "Redirecionamentos de depuração"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters"
msgstr "Depuração de filtros de expressão regular"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
+msgid "Default server timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
+msgid "Delay (in seconds) during system boot before Privoxy starts."
msgstr ""
-"Atraso (em segundos) durante a inicialização do sistema antes do Privoxy "
-"iniciar"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr "O diretório não existe!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
+msgid "Deny access"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode"
msgstr "Desativado == Modo Proxy Transparente"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "Documentation"
msgstr "Documentação"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr "Durante o atraso, eventos ifup não serão monitorados!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
+msgid "Email address for the Privoxy administrator."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
+msgid "Enable action file editor"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
+msgid "Enable compression"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding"
msgstr "Ativar o encaminhamento de autenticação de proxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
+msgid "Enable remote toggle"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
+msgid "Enable remote toggle via HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
+msgid "Enable/Disable autostart of Privoxy"
msgstr ""
-"Ativar/Desativar a iniciação automática do Privoxy junto com a iniciação do "
-"sistema ou eventos de interface"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts."
msgstr "Ativar / Desativar filtragem quando Privoxy iniciar."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled"
msgstr "Ativado"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
"A ativação dessa opção não é recomendado se não houver nenhum proxy pai que "
"requer autenticação!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr "O ficheiro '%s' não foi encontrado dentro do Diretório de Configuração"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr "Ficheiro não encontrado ou vazio"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
+msgid "Enforce page blocking"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid "Files and Directories"
msgstr "Ficheiros e diretórios"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr "Para ajuda, use o link na respectiva opção"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
+msgid "Filter files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
+msgid "Forward HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
+msgid "Forward SOCKS 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
+msgid "Forward SOCKS 4A"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
+msgid "Forward SOCKS 5"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
+msgid "Forward SOCKS 5t"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding"
msgstr "Encaminhando"
msgid "Grant UCI access for luci-app-privoxy"
msgstr "Conceder UCI acesso ao luci-app-privoxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
+msgid "Handle as empty doc returns ok"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+"If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
-"Se ativado, Privoxy esconde o link \"ir lá de qualquer maneira\". O "
-"utilizador, obviamente, não deve ser capaz de contornar qualquer bloqueio."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"mesmo, pode ser uma boa ideia para que eles saibam como falar com você, o "
"que você bloquear e por que você faz isso, as suas políticas, etc."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr "Endereço de e-mail inválido"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
msgid "It is NOT recommended for the casual user."
msgstr "Não é recomendado para o utilizador casual."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
+msgid "Keep-alive timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
+msgid "Listen addresses"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual."
msgstr "Localização do Manual do Utilizador do Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr "Visualizador de ficheiro de log"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
+msgid "Log Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
+msgid "Log File"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network"
msgstr "Registar todos os dados lidos da rede"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network"
msgstr "Registar todos os dados gravados na rede"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions"
msgstr "Registar as ações aplicadas"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
"Registar o destino para cada pedido que o Privoxy deixou passar. Consulte "
"também 'Debug 1024'."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
msgstr ""
"Registar o destino para os pedidos que o Privoxy não deixou passar e porque."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr "Logging"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Main actions file"
msgstr "Ficheiro principal de ações"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr "Entrada obrigatória: Dados não foram informados!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr "Entrada obrigatória: Nenhum Diretório foi informado!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No File given!"
msgstr "Entrada obrigatória: Nenhum Ficheiro foi dado!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr "Entrada obrigatória: Nenhuma Porta foi informado!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr "Entrada obrigatória: Nenhum Ficheiro foi dado!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
+msgid "Max. client connections"
msgstr ""
-"Entrada obrigatória: Nenhum endereço IPv4 ou nome de equipamento válido foi "
-"fornecido!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr "Entrada obrigatória: Nenhum endereço IPv6 válido foi informado!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr "Entrada obrigatória: Nenhuma porta válida foi informada!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
msgid "Maximum number of client connections that will be served."
msgstr "O número máximo de conexões de cliente que será aceito."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr "Tamanho máximo (em KB) do buffer para filtragem de conteúdo."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr "Diversos"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr "NÃO instalado"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr "Sem '/' final, por favor."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
+msgid "Misc"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr "Erros não fatais - *é altamente recomendado ativar isto*"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
"Número de segundos após o qual uma conexão expira se nenhum dado for "
"recebido."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
"Número de segundos após o qual uma conexão aberta deixará de ser reutilizada."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
+msgid "Permit access"
msgstr ""
-"Somente quando for usado os \"filtros externos\". O Privoxy tem que criar "
-"ficheiros temporários."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr "Por favor, instale a versão atual!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr "Por favor pressione o botão [Ler]"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Please read Privoxy manual for details!"
msgstr "Por favor, leia o manual do Privoxy para mais detalhes!"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr "Por favor, atualize para a versão atual!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
+msgid "Privoxy"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
+msgid "Privoxy Settings"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
+#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy"
msgstr "Privoxy Web Proxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"configuração, ajuda e de registos. Esta secção do ficheiro de configuração "
"informa o Privoxy onde encontrar os outros ficheiros."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
+msgid "Proxy Info URL"
msgstr ""
-"Privoxy é um proxy web sem cache com capacidades avançadas de filtragem para "
-"aumentar a privacidade, modificar dados de páginas web e cabeçalhos HTTP, "
-"controlar o acesso e remover anúncios e outras porcarias detestável da "
-"Internet."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr "Ler / Ler novamente o ficheiro de log"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Show I/O status"
msgstr "Mostrar estado de Entrada/Saída"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status"
msgstr "Mostrar cada estado de conexão"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing"
msgstr "Mostrar análise do cabeçalho"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr "O pacote de software '%s' não está instalado."
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr "O pacote '%' está desatualizado."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "Iniciar"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
+msgid "Single Threaded"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr "Iniciar / Parar"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
+msgid "Socket timeout"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr "Inicia / Para o Privoxy Web Proxy"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
+msgid "Split large forms"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Startup banner and warnings."
msgstr "Mensagens e avisos iniciais."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
msgid "Syntax:"
msgstr "Sintaxe:"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces."
msgstr "Sintaxe: nomes de cabeçalho do cliente delimitados por espaços."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
+msgid ""
+"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]"
msgstr "Sintaxe: padrão_alvo http_superior[:porta]"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
+msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System"
msgstr "Sistema"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
+msgid "Template Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
+msgid "Temporary Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
"O(s) ficheiro(s) ações a ser usado. Várias linhas no ficheiro são "
"permitidas, e são, de fato, recomendadas!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
"O endereço e porta TCP em que Privoxy vai esperar por pedidos dos clientes."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
"O nível de compressão que é passada para a biblioteca zlib ao comprimir o "
"conteúdo em buffer."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
+"located).<br />No trailing \"/\", please."
msgstr ""
-"O diretório onde todos os registos ocorrem (ex: onde o ficheiro de log está "
-"localizado)."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located."
msgstr ""
"O diretório onde os outros ficheiros de configuração estão localizados."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
"Os ficheiros de filtro contêm regras de modificação de conteúdo que usam "
"expressões regulares."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages."
msgstr "O nome da máquina mostrado nas páginas de CGI."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory."
msgstr ""
"O ficheiro de registos a ser usado. O nome do ficheiro, relativo ao "
"diretório de log."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
"A ordem em que os cabeçalhos dos clientes são classificados antes de "
"encaminhá-los."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
"O código de estado do Privoxy retorna para páginas bloqueadas com +handle-as-"
"empty-document."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
"O mecanismo de confiança é um recurso experimental para a construção de "
"listas de destinos confiáveis e deve ser usado com cuidado."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-"O valor desta opção só importa se o mecanismo de confiança experimental foi "
-"ativado."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
"Esta opção só está lá para fins de depuração. Ele irá reduzir drasticamente "
"o desempenho."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
"Esta opção será removida em versões futuras, uma vez que ficou obsoleta "
"pelos marcadores de cabeçalho mais genéricos."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
"Esta guia controla os aspectos da configuração do Privoxy relevantes para a "
"segurança."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
"Através de qual Proxy SOCKS (e, opcionalmente, para o qual proxy HTTP "
"superior) pedidos específicos devem ser encaminhados."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr ""
"Para qual proxy HTTP superior os pedidos específicos devem ser encaminhados."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
+msgid "Toggle Status"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
+msgid "Tolerate pipelining"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
+msgid "Trust Info URL"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
+msgid "Trust file"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
+msgid ""
+"URL shown if access to an untrusted page is denied. Only applies if trust "
+"mechanism is enabled."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
+msgid "URL to documentation about the local Privoxy setup."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
+msgid "User Manual"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
msgid "User customizations"
msgstr "Personalizações do utilizador"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr "O valor não é um número"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr "Valor não está entre 0 e 300"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr "Valor não está entre 0 e 9"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr "Valor não entre 1 e 4096"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr "Valor não é maior que 0 ou vazio"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr "Faixa do valor de 1 até 4096. Se vazio, será 4096"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "Versão"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr "Informação da Versão"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
msgid "Whether intercepted requests should be treated as valid."
msgstr "Se as solicitações interceptados deve ser tratadas como válidas."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
"Se o Privoxy deve reconhecer cabeçalhos HTTP especiais para mudar de "
"alternância do estado."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery."
msgstr "Se o conteúdo em buffer é comprimido antes da entrega."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
"Se as conexões de saída que foram mantidas vivas devem ser compartilhadas "
"entre diferentes conexões de entrada."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served."
msgstr "Se os pedidos de pipeline deve ser aceitos."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr "Se a autenticação de proxy através do Privoxy deve funcionar."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used."
msgstr "Se o editor de ficheiros de ações baseadas na web deve ser utilizado."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used."
msgstr "Se deve ser usado o recurso de alternância baseado na web."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
"Se as solicitações para páginas CGI do Privoxy podem ser bloqueadas ou "
"redirecionadas."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
"Se a interface CGI deve se manter compatível com clientes HTTP mal "
"implementados."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread."
msgstr "Se deseja executar o servidor como apenas uma thread."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what."
msgstr "Quem pode acessar o quê."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr "instalado"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr "ou maior"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr "necessário"
+#~ msgid ""
+#~ "A URL to be displayed in the error page that users will see if access to "
+#~ "an untrusted page is denied."
+#~ msgstr ""
+#~ "A URL a ser exibida na página de erro que os utilizadores verão se o "
+#~ "acesso a uma página não confiável é negado."
+
+#~ msgid ""
+#~ "A URL to documentation about the local Privoxy setup, configuration or "
+#~ "policies."
+#~ msgstr ""
+#~ "A URL para a documentação sobre o Privoxy local, configuração ou "
+#~ "políticas."
+
+#~ msgid "A directory where Privoxy can create temporary files."
+#~ msgstr "Um diretório onde Privoxy pode criar ficheiros temporários."
+
+#~ msgid "An alternative directory where the templates are loaded from."
+#~ msgstr "Um diretório alternativo de onde os modelos são carregados."
+
+#~ msgid "An email address to reach the Privoxy administrator."
+#~ msgstr "Um endereço de e-mail para alcançar o administrador do Privoxy."
+
+#~ msgid ""
+#~ "Configure here the routing of HTTP requests through a chain of multiple "
+#~ "proxies. Note that parent proxies can severely decrease your privacy "
+#~ "level. Also specified here are SOCKS proxies."
+#~ msgstr ""
+#~ "Configure aqui o encaminhamento de pedidos HTTP através de uma cadeia de "
+#~ "múltiplos proxies. Note-se que proxies pai pode diminuir muito o nível de "
+#~ "privacidade. Também serão aceitos proxies SOCKS."
+
+#~ msgid "Delay (in seconds) during system boot before Privoxy start"
+#~ msgstr ""
+#~ "Atraso (em segundos) durante a inicialização do sistema antes do Privoxy "
+#~ "iniciar"
+
+#~ msgid "Directory does not exist!"
+#~ msgstr "O diretório não existe!"
+
+#~ msgid "During delay ifup-events are not monitored !"
+#~ msgstr "Durante o atraso, eventos ifup não serão monitorados!"
+
+#~ msgid ""
+#~ "Enable/Disable autostart of Privoxy on system startup and interface events"
+#~ msgstr ""
+#~ "Ativar/Desativar a iniciação automática do Privoxy junto com a iniciação "
+#~ "do sistema ou eventos de interface"
+
+#~ msgid "File '%s' not found inside Configuration Directory"
+#~ msgstr ""
+#~ "O ficheiro '%s' não foi encontrado dentro do Diretório de Configuração"
+
+#~ msgid "File not found or empty"
+#~ msgstr "Ficheiro não encontrado ou vazio"
+
+#~ msgid "For help use link at the relevant option"
+#~ msgstr "Para ajuda, use o link na respectiva opção"
+
+#~ msgid ""
+#~ "If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+#~ "should not be able to bypass any blocks."
+#~ msgstr ""
+#~ "Se ativado, Privoxy esconde o link \"ir lá de qualquer maneira\". O "
+#~ "utilizador, obviamente, não deve ser capaz de contornar qualquer bloqueio."
+
+#~ msgid "Invalid email address"
+#~ msgstr "Endereço de e-mail inválido"
+
+#~ msgid "Log File Viewer"
+#~ msgstr "Visualizador de ficheiro de log"
+
+#~ msgid "Logging"
+#~ msgstr "Logging"
+
+#~ msgid "Mandatory Input: No Data given!"
+#~ msgstr "Entrada obrigatória: Dados não foram informados!"
+
+#~ msgid "Mandatory Input: No Directory given!"
+#~ msgstr "Entrada obrigatória: Nenhum Diretório foi informado!"
+
+#~ msgid "Mandatory Input: No Port given!"
+#~ msgstr "Entrada obrigatória: Nenhuma Porta foi informado!"
+
+#~ msgid "Mandatory Input: No files given!"
+#~ msgstr "Entrada obrigatória: Nenhum Ficheiro foi dado!"
+
+#~ msgid "Mandatory Input: No valid IPv4 address or host given!"
+#~ msgstr ""
+#~ "Entrada obrigatória: Nenhum endereço IPv4 ou nome de equipamento válido "
+#~ "foi fornecido!"
+
+#~ msgid "Mandatory Input: No valid IPv6 address given!"
+#~ msgstr "Entrada obrigatória: Nenhum endereço IPv6 válido foi informado!"
+
+#~ msgid "Mandatory Input: No valid Port given!"
+#~ msgstr "Entrada obrigatória: Nenhuma porta válida foi informada!"
+
+#~ msgid "Miscellaneous"
+#~ msgstr "Diversos"
+
+#~ msgid "NOT installed"
+#~ msgstr "NÃO instalado"
+
+#~ msgid "No trailing '/', please."
+#~ msgstr "Sem '/' final, por favor."
+
+#~ msgid ""
+#~ "Only when using 'external filters', Privoxy has to create temporary files."
+#~ msgstr ""
+#~ "Somente quando for usado os \"filtros externos\". O Privoxy tem que criar "
+#~ "ficheiros temporários."
+
+#~ msgid "Please install current version !"
+#~ msgstr "Por favor, instale a versão atual!"
+
+#~ msgid "Please press [Read] button"
+#~ msgstr "Por favor pressione o botão [Ler]"
+
+#~ msgid "Please update to the current version!"
+#~ msgstr "Por favor, atualize para a versão atual!"
+
+#~ msgid ""
+#~ "Privoxy is a non-caching web proxy with advanced filtering capabilities "
+#~ "for enhancing privacy, modifying web page data and HTTP headers, "
+#~ "controlling access, and removing ads and other obnoxious Internet junk."
+#~ msgstr ""
+#~ "Privoxy é um proxy web sem cache com capacidades avançadas de filtragem "
+#~ "para aumentar a privacidade, modificar dados de páginas web e cabeçalhos "
+#~ "HTTP, controlar o acesso e remover anúncios e outras porcarias detestável "
+#~ "da Internet."
+
+#~ msgid "Read / Reread log file"
+#~ msgstr "Ler / Ler novamente o ficheiro de log"
+
+#~ msgid "Software package '%s' is not installed."
+#~ msgstr "O pacote de software '%s' não está instalado."
+
+#~ msgid "Software package '%s' is outdated."
+#~ msgstr "O pacote '%' está desatualizado."
+
+#~ msgid "Start"
+#~ msgstr "Iniciar"
+
+#~ msgid "Start / Stop"
+#~ msgstr "Iniciar / Parar"
+
+#~ msgid "Start/Stop Privoxy WEB Proxy"
+#~ msgstr "Inicia / Para o Privoxy Web Proxy"
+
+#~ msgid ""
+#~ "The directory where all logging takes place (i.e. where the logfile is "
+#~ "located)."
+#~ msgstr ""
+#~ "O diretório onde todos os registos ocorrem (ex: onde o ficheiro de log "
+#~ "está localizado)."
+
+#~ msgid ""
+#~ "The value of this option only matters if the experimental trust mechanism "
+#~ "has been activated."
+#~ msgstr ""
+#~ "O valor desta opção só importa se o mecanismo de confiança experimental "
+#~ "foi ativado."
+
+#~ msgid "Value is not a number"
+#~ msgstr "O valor não é um número"
+
+#~ msgid "Value not between 0 and 300"
+#~ msgstr "Valor não está entre 0 e 300"
+
+#~ msgid "Value not between 0 and 9"
+#~ msgstr "Valor não está entre 0 e 9"
+
+#~ msgid "Value not between 1 and 4096"
+#~ msgstr "Valor não entre 1 e 4096"
+
+#~ msgid "Value not greater 0 or empty"
+#~ msgstr "Valor não é maior que 0 ou vazio"
+
+#~ msgid "Version"
+#~ msgstr "Versão"
+
+#~ msgid "Version Information"
+#~ msgstr "Informação da Versão"
+
+#~ msgid "installed"
+#~ msgstr "instalado"
+
+#~ msgid "or higher"
+#~ msgstr "ou maior"
+
+#~ msgid "required"
+#~ msgstr "necessário"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.2-dev\n"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
+"A directory where Privoxy can create temporary files.<br /><strong>Only when "
+"using 'external filters', Privoxy has to create temporary files.</strong>"
msgstr ""
-"A URL a ser exibida na página de erro que os usuários verão se o acesso a "
-"uma página não confiável é negado."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
+msgid "Accept intercepted requests"
msgstr ""
-"A URL para a documentação sobre o Privoxy local, configuração ou políticas."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr "Um diretório onde Privoxy pode criar arquivos temporários."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "Access Control"
msgstr "Controle de Acesso"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
+msgid "Action Files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
"Ações que são aplicadas a todos as páginas e talvez descartado mais tarde."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr "Um diretório alternativo de onde os modelos são carregados."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
+msgid "Admin Email"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr "Um endereço de e-mail para alcançar o administrador do Privoxy."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
+msgid "Allow CGI request crunching"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
+msgid ""
+"An alternative directory where the templates are loaded from.<br />No "
+"trailing \"/\", please."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
"Tempo limite, em segundos, da manutenção da conexão (keep-alive) do servidor "
"se não for especificado."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay"
msgstr "Atraso de iniciação"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
+msgid "Buffer Limit"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface"
msgstr "Interface de usuário CGI"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
+msgid "Client header order"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format"
msgstr "Formato de registros (log) comum"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
+msgid "Compression level"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
+msgid "Configuration Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
+msgid "Configure the Privoxy proxy daemon settings."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
+msgid "Connection sharing"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
+msgid "Debug"
msgstr ""
-"Configure aqui o encaminhamento de pedidos HTTP através de uma cadeia de "
-"múltiplos proxies. Note-se que proxies pai pode diminuir muito o nível de "
-"privacidade. Também serão aceitos proxies SOCKS."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
+msgid "Debug 1"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
+msgid "Debug 1024"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
+msgid "Debug 128"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
+msgid "Debug 16"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
+msgid "Debug 2"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
+msgid "Debug 2048"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
+msgid "Debug 256"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
+msgid "Debug 32"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
+msgid "Debug 32768"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
+msgid "Debug 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
+msgid "Debug 4096"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
+msgid "Debug 512"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
+msgid "Debug 64"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
+msgid "Debug 65536"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
+msgid "Debug 8"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
+msgid "Debug 8192"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation"
msgstr "Depurar de-animação GIF"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature"
msgstr "Recurso de depuração forçado"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects"
msgstr "Redirecionamentos de depuração"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters"
msgstr "Depuração de filtros de expressão regular"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
+msgid "Default server timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
+msgid "Delay (in seconds) during system boot before Privoxy starts."
msgstr ""
-"Atraso (em segundos) durante a inicialização do sistema antes do Privoxy "
-"iniciar"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr "O diretório não existe!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
+msgid "Deny access"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode"
msgstr "Desativado == Modo Proxy Transparente"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "Documentation"
msgstr "Documentação"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr "Durante a espera, eventos ifup não serão monitorados!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
+msgid "Email address for the Privoxy administrator."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
+msgid "Enable action file editor"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
+msgid "Enable compression"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding"
msgstr "Habilitar o encaminhamento de autenticação de proxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
+msgid "Enable remote toggle"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
+msgid "Enable remote toggle via HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
+msgid "Enable/Disable autostart of Privoxy"
msgstr ""
-"Ativar/Desativar a iniciação automática do Privoxy junto com a iniciação do "
-"sistema ou eventos de interface"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts."
msgstr "Ativar / Desativar filtragem quando Privoxy iniciar."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled"
msgstr "Ativado"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
"A ativação dessa opção não é recomendado se não houver nenhum proxy pai que "
"requer autenticação!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr "O arquivo '%s' não foi encontrado dentro do Diretório de Configuração"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr "Arquivo não encontrado ou vazio"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
+msgid "Enforce page blocking"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid "Files and Directories"
msgstr "Arquivos e diretórios"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr "Para ajuda, use o link na respectiva opção"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
+msgid "Filter files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
+msgid "Forward HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
+msgid "Forward SOCKS 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
+msgid "Forward SOCKS 4A"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
+msgid "Forward SOCKS 5"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
+msgid "Forward SOCKS 5t"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding"
msgstr "Encaminhando"
msgid "Grant UCI access for luci-app-privoxy"
msgstr "Conceda acesso UCI ao luci-app-privoxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
+msgid "Handle as empty doc returns ok"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+"If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
-"Se ativado, Privoxy esconde o link \"ir lá de qualquer maneira\". O usuário, "
-"obviamente, não deve ser capaz de contornar qualquer bloqueio."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"pode ser uma boa ideia para que eles saibam como falar com você, o que você "
"bloquear e por que você faz isso, as suas políticas, etc."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr "Endereço de e-mail inválido"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
msgid "It is NOT recommended for the casual user."
msgstr "Não é recomendado para o usuário casual."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
+msgid "Keep-alive timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
+msgid "Listen addresses"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual."
msgstr "Localização do Manual do Usuário do Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr "Visualizador de arquivo de registro"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
+msgid "Log Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
+msgid "Log File"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network"
msgstr "Registrar todos os dados lidos da rede"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network"
msgstr "Registrar todos os dados gravados na rede"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions"
msgstr "Registrar as ações aplicadas"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
"Registrar o destino para cada pedido que o Privoxy deixou passar. Consulte "
"também 'Debug 1024'."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
"Registrar o destino para os pedidos que o Privoxy não deixou passar, e a "
"razão pela qual."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr "Registrando os eventos"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Main actions file"
msgstr "Arquivo principal de ações"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr "Entrada obrigatória: Dados não foram informados!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr "Entrada obrigatória: Nenhum Diretório foi informado!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No File given!"
msgstr "Entrada obrigatória: Nenhum Arquivo foi informado!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr "Entrada obrigatória: Nenhuma Porta foi informado!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr "Entrada obrigatória: Nenhum Arquivo foi informado!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
+msgid "Max. client connections"
msgstr ""
-"Entrada obrigatória: Nenhum endereço IPv4 ou nome de equipamento válido foi "
-"fornecido!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr "Entrada obrigatória: Nenhum endereço IPv6 válido foi informado!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr "Entrada obrigatória: Nenhuma porta válida foi informada!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
msgid "Maximum number of client connections that will be served."
msgstr "O número máximo de conexões de cliente que será aceito."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr "Tamanho máximo (em KB) do buffer para filtragem de conteúdo."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr "Diversos"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr "NÃO instalado"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr "Sem '/' final, por favor."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
+msgid "Misc"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr "Erros não fatais - *é altamente recomendado ativar isto*"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
"Número de segundos após o qual uma conexão expira se nenhum dado for "
"recebido."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
"Número de segundos após o qual uma conexão aberta deixará de ser reutilizada."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
+msgid "Permit access"
msgstr ""
-"Somente quando for usado os \"filtros externos\". O Privoxy tem que criar "
-"arquivos temporários."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr "Por favor, instale a versão atual!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr "Por favor, pressione o botão [Ler]"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Please read Privoxy manual for details!"
msgstr "Por favor, leia o manual do Privoxy para mais detalhes!"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr "Por favor, atualize para a versão atual!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
+msgid "Privoxy"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
+msgid "Privoxy Settings"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
+#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy"
msgstr "Privoxy Web Proxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"configuração, ajuda e de registros. Esta seção do arquivo de configuração "
"informa o Privoxy onde encontrar os outros arquivos."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
+msgid "Proxy Info URL"
msgstr ""
-"Privoxy é um proxy web sem cache com capacidades avançadas de filtragem para "
-"aumentar a privacidade, modificar dados de páginas web e cabeçalhos HTTP, "
-"controlar o acesso e remover anúncios e outras porcarias detestável da "
-"Internet."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr "Ler / Ler novamente o arquivo do registro log"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Show I/O status"
msgstr "Mostrar status de Entrada/Saída"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status"
msgstr "Mostrar cada estado de conexão"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing"
msgstr "Mostrar análise do cabeçalho"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr "O pacote de software '%s' não está instalado."
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr "O pacote '%' está desatualizado."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "Início"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
+msgid "Single Threaded"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr "Iniciar / Parar"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
+msgid "Socket timeout"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr "Inicia / Para o Privoxy Web Proxy"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
+msgid "Split large forms"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Startup banner and warnings."
msgstr "Mensagens e avisos iniciais."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
msgid "Syntax:"
msgstr "Sintaxe:"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces."
msgstr "Sintaxe: nomes de cabeçalho do cliente delimitados por espaços."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
+msgid ""
+"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]"
msgstr "Sintaxe: padrão_alvo http_superior[:porta]"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
+msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System"
msgstr "Sistema"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
+msgid "Template Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
+msgid "Temporary Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
"O(s) arquivo(s) ações a ser usado. Várias linhas no arquivo são permitidas, "
"e são, de fato, recomendadas!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
"O endereço e porta TCP em que Privoxy vai esperar por pedidos dos clientes."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
"O nível de compressão que é passada para a biblioteca zlib ao comprimir o "
"conteúdo em buffer."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
+"located).<br />No trailing \"/\", please."
msgstr ""
-"O diretório onde todos os registros ocorrem (ex: onde o arquivo de log está "
-"localizado)."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located."
msgstr "O diretório onde os outros arquivos de configuração estão localizados."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
"Os arquivos de filtro contêm regras de modificação de conteúdo que usam "
"expressões regulares."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages."
msgstr "O nome da máquina mostrado nas páginas de CGI."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory."
msgstr ""
"O arquivo de registros a ser usado. O nome do arquivo, relativo ao diretório "
"de log."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
"A ordem em que os cabeçalhos dos clientes são classificados antes de "
"encaminhá-los."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
"O código de status Privoxy retorna para páginas bloqueadas com +handle-as-"
"empty-document."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
"O mecanismo de confiança é um recurso experimental para a construção de "
"listas de destinos confiáveis e deve ser usado com cuidado."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-"O valor desta opção só importa se o mecanismo de confiança experimental foi "
-"ativado."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
"Esta opção só está lá para fins de depuração. Ele irá reduzir drasticamente "
"o desempenho."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
"Esta opção será removida em versões futuras, uma vez que ficou obsoleta "
"pelos marcadores de cabeçalho mais genéricos."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
"Esta guia controla os aspectos da configuração do Privoxy relevantes para a "
"segurança."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
"Através de qual Proxy SOCKS (e, opcionalmente, para o qual proxy HTTP "
"superior) pedidos específicos devem ser encaminhados."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr ""
"Para qual proxy HTTP superior os pedidos específicos devem ser encaminhados."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
+msgid "Toggle Status"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
+msgid "Tolerate pipelining"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
+msgid "Trust Info URL"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
+msgid "Trust file"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
+msgid ""
+"URL shown if access to an untrusted page is denied. Only applies if trust "
+"mechanism is enabled."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
+msgid "URL to documentation about the local Privoxy setup."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
+msgid "User Manual"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
msgid "User customizations"
msgstr "Personalizações do usuário"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr "O valor não é um número"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr "Valor não está entre 0 e 300"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr "Valor não está entre 0 e 9"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr "Valor não entre 1 e 4096"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr "Valor não é maior que 0 ou vazio"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr "Faixa do valor de 1 até 4096. Se vazio, será 4096"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "Versão"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr "Informação da Versão"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
msgid "Whether intercepted requests should be treated as valid."
msgstr "Se as solicitações interceptados deve ser tratadas como válidas."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
"Se o Privoxy deve reconhecer cabeçalhos HTTP especiais para mudar de "
"alternância do estado."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery."
msgstr "Se o conteúdo em buffer é comprimido antes da entrega."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
"Se as conexões de saída que foram mantidas vivas devem ser compartilhadas "
"entre diferentes conexões de entrada."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served."
msgstr "Se os pedidos de pipeline deve ser aceitos."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr "Se a autenticação de proxy através do Privoxy deve funcionar."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used."
msgstr "Se o editor de arquivos de ações baseadas na web deve ser utilizado."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used."
msgstr "Se deve ser usado o recurso de alternância baseado na web."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
"Se as solicitações para páginas CGI do Privoxy podem ser bloqueadas ou "
"redirecionadas."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
"Se a interface CGI deve se manter compatível com clientes HTTP mal "
"implementados."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread."
msgstr "Se deseja executar o servidor como apenas uma thread."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what."
msgstr "Quem pode acessar o quê."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr "instalado"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr "ou maior"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr "necessário"
+#~ msgid ""
+#~ "A URL to be displayed in the error page that users will see if access to "
+#~ "an untrusted page is denied."
+#~ msgstr ""
+#~ "A URL a ser exibida na página de erro que os usuários verão se o acesso a "
+#~ "uma página não confiável é negado."
+
+#~ msgid ""
+#~ "A URL to documentation about the local Privoxy setup, configuration or "
+#~ "policies."
+#~ msgstr ""
+#~ "A URL para a documentação sobre o Privoxy local, configuração ou "
+#~ "políticas."
+
+#~ msgid "A directory where Privoxy can create temporary files."
+#~ msgstr "Um diretório onde Privoxy pode criar arquivos temporários."
+
+#~ msgid "An alternative directory where the templates are loaded from."
+#~ msgstr "Um diretório alternativo de onde os modelos são carregados."
+
+#~ msgid "An email address to reach the Privoxy administrator."
+#~ msgstr "Um endereço de e-mail para alcançar o administrador do Privoxy."
+
+#~ msgid ""
+#~ "Configure here the routing of HTTP requests through a chain of multiple "
+#~ "proxies. Note that parent proxies can severely decrease your privacy "
+#~ "level. Also specified here are SOCKS proxies."
+#~ msgstr ""
+#~ "Configure aqui o encaminhamento de pedidos HTTP através de uma cadeia de "
+#~ "múltiplos proxies. Note-se que proxies pai pode diminuir muito o nível de "
+#~ "privacidade. Também serão aceitos proxies SOCKS."
+
+#~ msgid "Delay (in seconds) during system boot before Privoxy start"
+#~ msgstr ""
+#~ "Atraso (em segundos) durante a inicialização do sistema antes do Privoxy "
+#~ "iniciar"
+
+#~ msgid "Directory does not exist!"
+#~ msgstr "O diretório não existe!"
+
+#~ msgid "During delay ifup-events are not monitored !"
+#~ msgstr "Durante a espera, eventos ifup não serão monitorados!"
+
+#~ msgid ""
+#~ "Enable/Disable autostart of Privoxy on system startup and interface events"
+#~ msgstr ""
+#~ "Ativar/Desativar a iniciação automática do Privoxy junto com a iniciação "
+#~ "do sistema ou eventos de interface"
+
+#~ msgid "File '%s' not found inside Configuration Directory"
+#~ msgstr ""
+#~ "O arquivo '%s' não foi encontrado dentro do Diretório de Configuração"
+
+#~ msgid "File not found or empty"
+#~ msgstr "Arquivo não encontrado ou vazio"
+
+#~ msgid "For help use link at the relevant option"
+#~ msgstr "Para ajuda, use o link na respectiva opção"
+
+#~ msgid ""
+#~ "If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+#~ "should not be able to bypass any blocks."
+#~ msgstr ""
+#~ "Se ativado, Privoxy esconde o link \"ir lá de qualquer maneira\". O "
+#~ "usuário, obviamente, não deve ser capaz de contornar qualquer bloqueio."
+
+#~ msgid "Invalid email address"
+#~ msgstr "Endereço de e-mail inválido"
+
+#~ msgid "Log File Viewer"
+#~ msgstr "Visualizador de arquivo de registro"
+
+#~ msgid "Logging"
+#~ msgstr "Registrando os eventos"
+
+#~ msgid "Mandatory Input: No Data given!"
+#~ msgstr "Entrada obrigatória: Dados não foram informados!"
+
+#~ msgid "Mandatory Input: No Directory given!"
+#~ msgstr "Entrada obrigatória: Nenhum Diretório foi informado!"
+
+#~ msgid "Mandatory Input: No Port given!"
+#~ msgstr "Entrada obrigatória: Nenhuma Porta foi informado!"
+
+#~ msgid "Mandatory Input: No files given!"
+#~ msgstr "Entrada obrigatória: Nenhum Arquivo foi informado!"
+
+#~ msgid "Mandatory Input: No valid IPv4 address or host given!"
+#~ msgstr ""
+#~ "Entrada obrigatória: Nenhum endereço IPv4 ou nome de equipamento válido "
+#~ "foi fornecido!"
+
+#~ msgid "Mandatory Input: No valid IPv6 address given!"
+#~ msgstr "Entrada obrigatória: Nenhum endereço IPv6 válido foi informado!"
+
+#~ msgid "Mandatory Input: No valid Port given!"
+#~ msgstr "Entrada obrigatória: Nenhuma porta válida foi informada!"
+
+#~ msgid "Miscellaneous"
+#~ msgstr "Diversos"
+
+#~ msgid "NOT installed"
+#~ msgstr "NÃO instalado"
+
+#~ msgid "No trailing '/', please."
+#~ msgstr "Sem '/' final, por favor."
+
+#~ msgid ""
+#~ "Only when using 'external filters', Privoxy has to create temporary files."
+#~ msgstr ""
+#~ "Somente quando for usado os \"filtros externos\". O Privoxy tem que criar "
+#~ "arquivos temporários."
+
+#~ msgid "Please install current version !"
+#~ msgstr "Por favor, instale a versão atual!"
+
+#~ msgid "Please press [Read] button"
+#~ msgstr "Por favor, pressione o botão [Ler]"
+
+#~ msgid "Please update to the current version!"
+#~ msgstr "Por favor, atualize para a versão atual!"
+
+#~ msgid ""
+#~ "Privoxy is a non-caching web proxy with advanced filtering capabilities "
+#~ "for enhancing privacy, modifying web page data and HTTP headers, "
+#~ "controlling access, and removing ads and other obnoxious Internet junk."
+#~ msgstr ""
+#~ "Privoxy é um proxy web sem cache com capacidades avançadas de filtragem "
+#~ "para aumentar a privacidade, modificar dados de páginas web e cabeçalhos "
+#~ "HTTP, controlar o acesso e remover anúncios e outras porcarias detestável "
+#~ "da Internet."
+
+#~ msgid "Read / Reread log file"
+#~ msgstr "Ler / Ler novamente o arquivo do registro log"
+
+#~ msgid "Software package '%s' is not installed."
+#~ msgstr "O pacote de software '%s' não está instalado."
+
+#~ msgid "Software package '%s' is outdated."
+#~ msgstr "O pacote '%' está desatualizado."
+
+#~ msgid "Start"
+#~ msgstr "Início"
+
+#~ msgid "Start / Stop"
+#~ msgstr "Iniciar / Parar"
+
+#~ msgid "Start/Stop Privoxy WEB Proxy"
+#~ msgstr "Inicia / Para o Privoxy Web Proxy"
+
+#~ msgid ""
+#~ "The directory where all logging takes place (i.e. where the logfile is "
+#~ "located)."
+#~ msgstr ""
+#~ "O diretório onde todos os registros ocorrem (ex: onde o arquivo de log "
+#~ "está localizado)."
+
+#~ msgid ""
+#~ "The value of this option only matters if the experimental trust mechanism "
+#~ "has been activated."
+#~ msgstr ""
+#~ "O valor desta opção só importa se o mecanismo de confiança experimental "
+#~ "foi ativado."
+
+#~ msgid "Value is not a number"
+#~ msgstr "O valor não é um número"
+
+#~ msgid "Value not between 0 and 300"
+#~ msgstr "Valor não está entre 0 e 300"
+
+#~ msgid "Value not between 0 and 9"
+#~ msgstr "Valor não está entre 0 e 9"
+
+#~ msgid "Value not between 1 and 4096"
+#~ msgstr "Valor não entre 1 e 4096"
+
+#~ msgid "Value not greater 0 or empty"
+#~ msgstr "Valor não é maior que 0 ou vazio"
+
+#~ msgid "Version"
+#~ msgstr "Versão"
+
+#~ msgid "Version Information"
+#~ msgstr "Informação da Versão"
+
+#~ msgid "installed"
+#~ msgstr "instalado"
+
+#~ msgid "or higher"
+#~ msgstr "ou maior"
+
+#~ msgid "required"
+#~ msgstr "necessário"
"20)) ? 1 : 2;\n"
"X-Generator: Weblate 4.18-dev\n"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
+"A directory where Privoxy can create temporary files.<br /><strong>Only when "
+"using 'external filters', Privoxy has to create temporary files.</strong>"
msgstr ""
-"Un URL care urmează să fie afișat în pagina de eroare pe care utilizatorii o "
-"vor vedea în cazul în care accesul la o pagină nesigură este refuzat."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
+msgid "Accept intercepted requests"
msgstr ""
-"O adresă URL către documentația despre setările, configurația sau politicile "
-"locale Privoxy."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr "Un director în care Privoxy poate crea fișiere temporare."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "Access Control"
msgstr "Controlul accesului"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
+msgid "Action Files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
"Acțiuni care se aplică tuturor site-urilor și care pot fi anulate ulterior."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr "Un director alternativ din care se încarcă șabloanele."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
+msgid "Admin Email"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
+msgid "Allow CGI request crunching"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr "O adresă de e-mail pentru a contacta administratorul Privoxy."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
+msgid ""
+"An alternative directory where the templates are loaded from.<br />No "
+"trailing \"/\", please."
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
"Timpul de așteptare presupus de server (în secunde) dacă nu este specificat "
"de server."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay"
msgstr "Întârziere la pornire"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
+msgid "Buffer Limit"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface"
msgstr "Interfață utilizator CGI"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
+msgid "Client header order"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format"
msgstr "Format comun de jurnal"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
+msgid "Compression level"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
+msgid "Configuration Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
+msgid "Configure the Privoxy proxy daemon settings."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
+msgid "Connection sharing"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
+msgid "Debug 1"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
+msgid "Debug 1024"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
+msgid "Debug 128"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
+msgid "Debug 16"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
+msgid "Debug 2"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
+msgid "Debug 2048"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
+msgid "Debug 256"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
+msgid "Debug 32"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
+msgid "Debug 32768"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
+msgid "Debug 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
+msgid "Debug 4096"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
+msgid "Debug 512"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
+msgid "Debug 64"
msgstr ""
-"Configurați aici rutarea cererilor HTTP printr-un lanț de proxy-uri "
-"multiple. Rețineți că proxies de tip parental pot scădea considerabil "
-"nivelul de confidențialitate. Tot aici sunt specificate și proxy-urile SOCKS."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
+msgid "Debug 65536"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
+msgid "Debug 8"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
+msgid "Debug 8192"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation"
msgstr "Depanare GIF de-animare"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature"
msgstr "Funcția Debug Force"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects"
msgstr "Depanarea redirecționărilor"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters"
msgstr "Depanarea filtrelor de expresie regulată"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
+msgid "Default server timeout"
msgstr ""
-"Întârziere (în secunde) în timpul pornirii sistemului înainte de pornirea "
-"Privoxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr "Directorul nu există!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
+msgid "Delay (in seconds) during system boot before Privoxy starts."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
+msgid "Deny access"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode"
msgstr "Dezactivat == Mod Proxy transparent"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "Documentation"
msgstr "Documentație"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr "În timpul întârzierii ifup-evenimentele nu sunt monitorizate !"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
+msgid "Email address for the Privoxy administrator."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
+msgid "Enable action file editor"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
+msgid "Enable compression"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding"
msgstr "Activați redirecționarea autentificării proxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
+msgid "Enable remote toggle"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
+msgid "Enable remote toggle via HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
+msgid "Enable/Disable autostart of Privoxy"
msgstr ""
-"Activați/dezactivați pornirea automată a Privoxy la pornirea sistemului și "
-"la evenimentele de interfață"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts."
msgstr "Activați/dezactivați filtrarea la pornirea Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled"
msgstr "activat"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
"Activarea acestei opțiuni NU este recomandată dacă nu există un proxy "
"părinte care necesită autentificare!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr "Fișierul '%s' nu a fost găsit în directorul de configurare"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr "Fișier nedescoperit sau gol"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
+msgid "Enforce page blocking"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid "Files and Directories"
msgstr "Fișiere și directoare"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr "Pentru ajutor folosiți link-ul de la opțiunea relevantă"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
+msgid "Filter files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
+msgid "Forward HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
+msgid "Forward SOCKS 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
+msgid "Forward SOCKS 4A"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
+msgid "Forward SOCKS 5"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
+msgid "Forward SOCKS 5t"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding"
msgstr "Redirecționare"
msgid "Grant UCI access for luci-app-privoxy"
msgstr "Acordă acces la UCI pentru luci-app-privoxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
+msgid "Handle as empty doc returns ok"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+"If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
-"Dacă este activată, Privoxy ascunde linkul 'du-te acolo oricum'. Evident, "
-"utilizatorul nu ar trebui să poată ocoli niciun blocaj."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"pentru tine însuți, ar fi o idee bună să le spui cum să te contacteze, ce "
"blochezi și de ce faci asta, politicile tale, etc."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr "Adresa de e-mail invalidă"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
msgid "It is NOT recommended for the casual user."
msgstr "NU este recomandat pentru un utilizator ocazional."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
+msgid "Keep-alive timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
+msgid "Listen addresses"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual."
msgstr "Locația manualului de utilizare Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr "Vizualizator de fișiere jurnal"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
+msgid "Log Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
+msgid "Log File"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network"
msgstr "Înregistrați toate datele citite din rețea"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network"
msgstr "Înregistrați toate datele scrise în rețea"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions"
msgstr "Înregistrați acțiunile de aplicare"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
"Înregistrați destinația pentru fiecare solicitare pe care Privoxy o lasă să "
"treacă. A se vedea și 'Debug 1024'."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
"Înregistrați destinația cererilor pe care Privoxy nu le-a primit și motivul "
"pentru care nu le-a primit."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr "Jurnalizare"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Main actions file"
msgstr "Fișierul acțiunilor principale"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr "Intrare obligatorie: Nu sunt furnizate date!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr "Intrare obligatorie: Nu se dă niciun director!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No File given!"
msgstr "Intrare obligatorie: Nu se dă niciun fișier!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr "Intrare obligatorie: Nu se dă niciun port!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr "Intrare obligatorie: Nu se dau fișiere!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
+msgid "Max. client connections"
msgstr ""
-"Intrare obligatorie: Nu a fost furnizată nicio adresă IPv4 sau gazdă validă!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr "Intrare obligatorie: Nu a fost furnizată nicio adresă IPv6 validă!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr "Intrare obligatorie: Nu a fost indicat niciun port valid!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
msgid "Maximum number of client connections that will be served."
msgstr "Numărul maxim de conexiuni client care vor fi servite."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr "Dimensiunea maximă (în KB) a tamponului pentru filtrarea conținutului."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr "Diverse"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr "NU este instalat"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr "Fără '/' la sfârșit, vă rog."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
+msgid "Misc"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr "Erorile non-fatal - *recomandăm cu tărie activarea acestui lucru*"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
"Numărul de secunde după care un socket se termină dacă nu se primesc date."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
"Numărul de secunde după care o conexiune deschisă nu va mai fi refolosită."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
+msgid "Permit access"
msgstr ""
-"Numai atunci când se utilizează \"filtre externe\", Privoxy trebuie să "
-"creeze fișiere temporare."
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr "Vă rugăm să instalați versiunea curentă!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr "Vă rugăm să apăsați butonul [Read]"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Please read Privoxy manual for details!"
msgstr "Vă rugăm să citiți manualul Privoxy pentru detalii!"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr "Vă rugăm să actualizați la versiunea curentă!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
+msgid "Privoxy"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
+msgid "Privoxy Settings"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
+#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy"
msgstr "Privoxy proxy WEB"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"fișierului de configurare îi spune lui Privoxy unde să găsească aceste alte "
"fișiere."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
+msgid "Proxy Info URL"
msgstr ""
-"Privoxy este un proxy web non-caching cu capacități avansate de filtrare "
-"pentru îmbunătățirea confidențialității, modificarea datelor din paginile "
-"web și a antetelor HTTP, controlul accesului și eliminarea reclamelor și a "
-"altor prostii enervante de pe internet."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr "Citiți / Recitiți fișierul jurnal"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Show I/O status"
msgstr "Afișați starea I/O"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status"
msgstr "Afișați starea fiecărei conexiuni"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing"
msgstr "Afișați parsarea antetului"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr "Pachetul software '%s' nu este instalat."
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr "Pachetul software '%s' este depășit."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "Porniți"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
+msgid "Single Threaded"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr "Pornire / Oprire"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
+msgid "Socket timeout"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr "Porniți/Opriți Privoxy WEB Proxy"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
+msgid "Split large forms"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Startup banner and warnings."
msgstr "Banner de pornire și avertismente."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
msgid "Syntax:"
msgstr "Sintaxă:"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces."
msgstr "Sintaxă: Nume de antet client delimitate prin spații."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
+msgid ""
+"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]"
msgstr "Sintaxă: target_pattern http_parent[:port]"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
+msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System"
msgstr "Sistem"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
+msgid "Template Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
+msgid "Temporary Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
"Fișierul (fișierele) de acțiuni care trebuie utilizat(e). Sunt permise mai "
"multe linii de fișiere de acțiuni și, de fapt, sunt recomandate!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr "Adresa și portul TCP pe care Privoxy va asculta cererile clienților."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
"Nivelul de compresie care este transmis bibliotecii zlib atunci când "
"comprimă conținutul tamponat."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
+"located).<br />No trailing \"/\", please."
msgstr ""
-"Directorul în care au loc toate înregistrările (adică unde se află fișierul "
-"jurnal)."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located."
msgstr "Directorul în care se află celelalte fișiere de configurare."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
"Fișierele de filtrare conțin reguli de modificare a conținutului care "
"utilizează expresii regulate."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages."
msgstr "Numele de gazdă afișat pe paginile CGI."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory."
msgstr ""
"Fișierul de jurnal care urmează să fie utilizat. Numele fișierului, în "
"raport cu directorul de jurnal."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
"Ordinea în care sunt sortate antetele clienților înainte de a le transmite."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
"Codul de stare pe care Privoxy îl returnează pentru paginile blocate cu "
"+handle-as-empty-document."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
"Mecanismul de încredere este o caracteristică experimentală pentru crearea "
"listelor albe și trebuie utilizat cu atenție."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-"Valoarea acestei opțiuni contează numai dacă a fost activat mecanismul "
-"experimental de încredere."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
"Această opțiune este disponibilă doar în scopuri de depanare. Aceasta va "
"reduce drastic performanța."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
"Această opțiune va fi eliminată în versiunile viitoare, deoarece a fost "
"înlocuită de etichete de antet mai generale."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
"Această filă controlează aspectele relevante pentru securitate ale "
"configurației Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
"Prin intermediul cărui proxy SOCKS (și, opțional, către ce proxy HTTP "
"părinte) trebuie direcționate cererile specifice."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr ""
"Prin intermediul cărui proxy SOCKS (și, opțional, către ce proxy HTTP "
"părinte) trebuie direcționate cererile specifice."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
+msgid "Toggle Status"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
+msgid "Tolerate pipelining"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
+msgid "Trust Info URL"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
+msgid "Trust file"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
+msgid ""
+"URL shown if access to an untrusted page is denied. Only applies if trust "
+"mechanism is enabled."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
+msgid "URL to documentation about the local Privoxy setup."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
+msgid "User Manual"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
msgid "User customizations"
msgstr "Personalizări ale utilizatorului"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr "Valoarea nu este un număr"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr "Valoarea nu este cuprinsă între 0 și 300"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr "Valoarea nu este cuprinsă între 0 și 9"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr "Valoarea nu este cuprinsă între 1 și 4096"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr "Valoarea nu este mai mare de 0 sau goală"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr ""
"Interval de valori de la 1 la 4096, dacă nu există nicio intrare, valoarea "
"implicită este 4096"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "Versiune"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr "Informații despre versiune"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
msgid "Whether intercepted requests should be treated as valid."
msgstr "Dacă cererile interceptate trebuie tratate ca fiind valide."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
"Dacă Privoxy recunoaște sau nu antetele HTTP speciale pentru a schimba "
"starea de comutare."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery."
msgstr "Dacă conținutul tamponat este sau nu comprimat înainte de livrare."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
"Dacă conexiunile de ieșire care au fost menținute în viață ar trebui sau nu "
"să fie partajate între diferite conexiuni de intrare."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served."
msgstr "Dacă trebuie sau nu servite cereri în lanț."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr "Dacă autentificarea proxy prin Privoxy trebuie să funcționeze sau nu."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used."
msgstr ""
"Dacă poate fi utilizat sau nu editorul de fișiere de acțiuni bazat pe web."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used."
msgstr "Dacă poate fi utilizată sau nu funcția de comutare bazată pe web."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
"Dacă cererile către paginile CGI ale Privoxy pot fi blocate sau "
"redirecționate."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
"Dacă interfața CGI trebuie să rămână compatibilă cu clienții HTTP defectuoși."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread."
msgstr "Dacă se va rula doar un singur fir de server."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what."
msgstr "Cine poate avea acces la ce."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr "instalat"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr "sau mai mare"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr "necesară"
+#~ msgid ""
+#~ "A URL to be displayed in the error page that users will see if access to "
+#~ "an untrusted page is denied."
+#~ msgstr ""
+#~ "Un URL care urmează să fie afișat în pagina de eroare pe care "
+#~ "utilizatorii o vor vedea în cazul în care accesul la o pagină nesigură "
+#~ "este refuzat."
+
+#~ msgid ""
+#~ "A URL to documentation about the local Privoxy setup, configuration or "
+#~ "policies."
+#~ msgstr ""
+#~ "O adresă URL către documentația despre setările, configurația sau "
+#~ "politicile locale Privoxy."
+
+#~ msgid "A directory where Privoxy can create temporary files."
+#~ msgstr "Un director în care Privoxy poate crea fișiere temporare."
+
+#~ msgid "An alternative directory where the templates are loaded from."
+#~ msgstr "Un director alternativ din care se încarcă șabloanele."
+
+#~ msgid "An email address to reach the Privoxy administrator."
+#~ msgstr "O adresă de e-mail pentru a contacta administratorul Privoxy."
+
+#~ msgid ""
+#~ "Configure here the routing of HTTP requests through a chain of multiple "
+#~ "proxies. Note that parent proxies can severely decrease your privacy "
+#~ "level. Also specified here are SOCKS proxies."
+#~ msgstr ""
+#~ "Configurați aici rutarea cererilor HTTP printr-un lanț de proxy-uri "
+#~ "multiple. Rețineți că proxies de tip parental pot scădea considerabil "
+#~ "nivelul de confidențialitate. Tot aici sunt specificate și proxy-urile "
+#~ "SOCKS."
+
+#~ msgid "Delay (in seconds) during system boot before Privoxy start"
+#~ msgstr ""
+#~ "Întârziere (în secunde) în timpul pornirii sistemului înainte de pornirea "
+#~ "Privoxy"
+
+#~ msgid "Directory does not exist!"
+#~ msgstr "Directorul nu există!"
+
+#~ msgid "During delay ifup-events are not monitored !"
+#~ msgstr "În timpul întârzierii ifup-evenimentele nu sunt monitorizate !"
+
+#~ msgid ""
+#~ "Enable/Disable autostart of Privoxy on system startup and interface events"
+#~ msgstr ""
+#~ "Activați/dezactivați pornirea automată a Privoxy la pornirea sistemului "
+#~ "și la evenimentele de interfață"
+
+#~ msgid "File '%s' not found inside Configuration Directory"
+#~ msgstr "Fișierul '%s' nu a fost găsit în directorul de configurare"
+
+#~ msgid "File not found or empty"
+#~ msgstr "Fișier nedescoperit sau gol"
+
+#~ msgid "For help use link at the relevant option"
+#~ msgstr "Pentru ajutor folosiți link-ul de la opțiunea relevantă"
+
+#~ msgid ""
+#~ "If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+#~ "should not be able to bypass any blocks."
+#~ msgstr ""
+#~ "Dacă este activată, Privoxy ascunde linkul 'du-te acolo oricum'. Evident, "
+#~ "utilizatorul nu ar trebui să poată ocoli niciun blocaj."
+
+#~ msgid "Invalid email address"
+#~ msgstr "Adresa de e-mail invalidă"
+
+#~ msgid "Log File Viewer"
+#~ msgstr "Vizualizator de fișiere jurnal"
+
+#~ msgid "Logging"
+#~ msgstr "Jurnalizare"
+
+#~ msgid "Mandatory Input: No Data given!"
+#~ msgstr "Intrare obligatorie: Nu sunt furnizate date!"
+
+#~ msgid "Mandatory Input: No Directory given!"
+#~ msgstr "Intrare obligatorie: Nu se dă niciun director!"
+
+#~ msgid "Mandatory Input: No Port given!"
+#~ msgstr "Intrare obligatorie: Nu se dă niciun port!"
+
+#~ msgid "Mandatory Input: No files given!"
+#~ msgstr "Intrare obligatorie: Nu se dau fișiere!"
+
+#~ msgid "Mandatory Input: No valid IPv4 address or host given!"
+#~ msgstr ""
+#~ "Intrare obligatorie: Nu a fost furnizată nicio adresă IPv4 sau gazdă "
+#~ "validă!"
+
+#~ msgid "Mandatory Input: No valid IPv6 address given!"
+#~ msgstr "Intrare obligatorie: Nu a fost furnizată nicio adresă IPv6 validă!"
+
+#~ msgid "Mandatory Input: No valid Port given!"
+#~ msgstr "Intrare obligatorie: Nu a fost indicat niciun port valid!"
+
+#~ msgid "Miscellaneous"
+#~ msgstr "Diverse"
+
+#~ msgid "NOT installed"
+#~ msgstr "NU este instalat"
+
+#~ msgid "No trailing '/', please."
+#~ msgstr "Fără '/' la sfârșit, vă rog."
+
+#~ msgid ""
+#~ "Only when using 'external filters', Privoxy has to create temporary files."
+#~ msgstr ""
+#~ "Numai atunci când se utilizează \"filtre externe\", Privoxy trebuie să "
+#~ "creeze fișiere temporare."
+
+#~ msgid "Please install current version !"
+#~ msgstr "Vă rugăm să instalați versiunea curentă!"
+
+#~ msgid "Please press [Read] button"
+#~ msgstr "Vă rugăm să apăsați butonul [Read]"
+
+#~ msgid "Please update to the current version!"
+#~ msgstr "Vă rugăm să actualizați la versiunea curentă!"
+
+#~ msgid ""
+#~ "Privoxy is a non-caching web proxy with advanced filtering capabilities "
+#~ "for enhancing privacy, modifying web page data and HTTP headers, "
+#~ "controlling access, and removing ads and other obnoxious Internet junk."
+#~ msgstr ""
+#~ "Privoxy este un proxy web non-caching cu capacități avansate de filtrare "
+#~ "pentru îmbunătățirea confidențialității, modificarea datelor din paginile "
+#~ "web și a antetelor HTTP, controlul accesului și eliminarea reclamelor și "
+#~ "a altor prostii enervante de pe internet."
+
+#~ msgid "Read / Reread log file"
+#~ msgstr "Citiți / Recitiți fișierul jurnal"
+
+#~ msgid "Software package '%s' is not installed."
+#~ msgstr "Pachetul software '%s' nu este instalat."
+
+#~ msgid "Software package '%s' is outdated."
+#~ msgstr "Pachetul software '%s' este depășit."
+
+#~ msgid "Start"
+#~ msgstr "Porniți"
+
+#~ msgid "Start / Stop"
+#~ msgstr "Pornire / Oprire"
+
+#~ msgid "Start/Stop Privoxy WEB Proxy"
+#~ msgstr "Porniți/Opriți Privoxy WEB Proxy"
+
+#~ msgid ""
+#~ "The directory where all logging takes place (i.e. where the logfile is "
+#~ "located)."
+#~ msgstr ""
+#~ "Directorul în care au loc toate înregistrările (adică unde se află "
+#~ "fișierul jurnal)."
+
+#~ msgid ""
+#~ "The value of this option only matters if the experimental trust mechanism "
+#~ "has been activated."
+#~ msgstr ""
+#~ "Valoarea acestei opțiuni contează numai dacă a fost activat mecanismul "
+#~ "experimental de încredere."
+
+#~ msgid "Value is not a number"
+#~ msgstr "Valoarea nu este un număr"
+
+#~ msgid "Value not between 0 and 300"
+#~ msgstr "Valoarea nu este cuprinsă între 0 și 300"
+
+#~ msgid "Value not between 0 and 9"
+#~ msgstr "Valoarea nu este cuprinsă între 0 și 9"
+
+#~ msgid "Value not between 1 and 4096"
+#~ msgstr "Valoarea nu este cuprinsă între 1 și 4096"
+
+#~ msgid "Value not greater 0 or empty"
+#~ msgstr "Valoarea nu este mai mare de 0 sau goală"
+
+#~ msgid "Version"
+#~ msgstr "Versiune"
+
+#~ msgid "Version Information"
+#~ msgstr "Informații despre versiune"
+
+#~ msgid "installed"
+#~ msgstr "instalat"
+
+#~ msgid "or higher"
+#~ msgstr "sau mai mare"
+
+#~ msgid "required"
+#~ msgstr "necesară"
"Project-Info: Это технический перевод, не дословный. Главное-удобный русский "
"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
+"A directory where Privoxy can create temporary files.<br /><strong>Only when "
+"using 'external filters', Privoxy has to create temporary files.</strong>"
msgstr ""
-"URL-адрес, отображаемый на странице ошибки, который пользователи будут "
-"видеть, если доступ к ненадёжной странице запрещён."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
+msgid "Accept intercepted requests"
msgstr ""
-"URL-адрес к документации о локальной настройке, конфигурации или политиках "
-"Privoxy."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr "Директория, в которой Privoxy будет создавать временные файлы."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "Access Control"
msgstr "Контроль доступа"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
+msgid "Action Files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
"Действия, которые будут применены ко всем сайтам и могут быть переопределены "
"другими файлами с действиями."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr "Дополнительная директория, из которой будут загружаться шаблоны."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
+msgid "Admin Email"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr "Адрес электронной почты для связи с администратором Privoxy."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
+msgid "Allow CGI request crunching"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
+msgid ""
+"An alternative directory where the templates are loaded from.<br />No "
+"trailing \"/\", please."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
"Предполагаемый таймаут ожидания (в секундах) на стороне сервера, если он не "
"указан сервером."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay"
msgstr "Задержка загрузки"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
+msgid "Buffer Limit"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface"
msgstr "Пользовательский интерфейс CGI"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
+msgid "Client header order"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format"
msgstr "Типичный формат системного журнала"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
+msgid "Compression level"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
+msgid "Configuration Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
+msgid "Configure the Privoxy proxy daemon settings."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
+msgid "Connection sharing"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
+msgid "Debug 1"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
+msgid "Debug 1024"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
+msgid "Debug 128"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
+msgid "Debug 16"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
+msgid "Debug 2"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
+msgid "Debug 2048"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
+msgid "Debug 256"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
+msgid "Debug 32"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
+msgid "Debug 32768"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
+msgid "Debug 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
+msgid "Debug 4096"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
+msgid "Debug 512"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
+msgid "Debug 64"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
+msgid "Debug 65536"
msgstr ""
-"Настройте здесь маршрутизацию HTTP-запросов через цепочку прокси-серверов. "
-"Учтите, что вышестоящие прокси могут существенно снизить уровень "
-"приватности. Здесь также настраиваются SOCKS-прокси."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
+msgid "Debug 8"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
+msgid "Debug 8192"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation"
msgstr "Отладка GIF де-анимации"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature"
msgstr "Отладка функции назначения"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects"
msgstr "Отладка перенаправлений"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters"
msgstr "Отладка фильтров регулярных выражений"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
-msgstr "Задержка (в секундах) во время загрузки системы до запуска Privoxy"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
+msgid "Default server timeout"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr "Папка не существует!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
+msgid "Delay (in seconds) during system boot before Privoxy starts."
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
+msgid "Deny access"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode"
msgstr "Отключён == Прозрачный режим прокси-сервера"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "Documentation"
msgstr "Документация"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr "Во время задержки ifup-события не отслеживаются!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
+msgid "Email address for the Privoxy administrator."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
+msgid "Enable action file editor"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
+msgid "Enable compression"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding"
msgstr "Включить проверку подлинности прокси-сервера переадресации"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
+msgid "Enable remote toggle"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
+msgid "Enable remote toggle via HTTP"
msgstr ""
-"Включить/выключить, автозапуск Privoxy при старте системы и событиях "
-"интерфейса"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
+msgid "Enable/Disable autostart of Privoxy"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts."
msgstr "Включить / Выключить фильтрацию при запуске Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled"
msgstr "Включено"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
"Включение этой опции не рекомендуется, если отсутствует родительский прокси, "
"который требует аутентификации!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr "Файл '%S' не найден в папке с config файлами"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr "Файл не найден или пустой"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
+msgid "Enforce page blocking"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid "Files and Directories"
msgstr "Файлы и папки"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr "Для получения справки используйте ссылку по соответствующей опции"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
+msgid "Filter files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
+msgid "Forward HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
+msgid "Forward SOCKS 4"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
+msgid "Forward SOCKS 4A"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
+msgid "Forward SOCKS 5"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
+msgid "Forward SOCKS 5t"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding"
msgstr "Маршрутизация"
msgid "Grant UCI access for luci-app-privoxy"
msgstr "Предоставить UCI доступ для luci-app-privoxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
+msgid "Handle as empty doc returns ok"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+"If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
-"Если включено, Privoxy скрывает 'идти туда в любом случае'. Пользователь не "
-"сможет обойти блокировку."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"пользователям, как с вами связаться, что блокируется и почему, каковы "
"политики и т. д."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr "Неверный email адрес"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
msgid "It is NOT recommended for the casual user."
msgstr "Нельзя использовать случайному пользователю."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
+msgid "Keep-alive timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
+msgid "Listen addresses"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual."
msgstr "Расположение руководства пользователя Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr "Просмотр файла журнала"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
+msgid "Log Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
+msgid "Log File"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network"
msgstr "Записывать в системный журнал все данные, считываемые сетью"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network"
msgstr "Записывать в системный журнал все данные, отправленные в сеть"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions"
msgstr "Записывать в системный журнал все действия"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
"Записывать в системный журнал места назначения для каждого запроса, который "
"передаёт Privoxy. См. также 'Debug 1024'."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
msgstr "Записывать в системный журнал неудачные попытки Privoxy и их причины."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr "Журналирование"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Main actions file"
msgstr "Дефолтные действия"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr "Обязательный ввод: не указаны данные!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr "Обязательный ввод: не указана папка!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No File given!"
msgstr "Обязательный ввод: не указан файл!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr "Обязательный ввод: Не указан порт!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr "Обязательный ввод: не указаны файлы!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
-msgstr "Обязательный ввод: Не указан действительный IPv4 адрес или хост!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr "Обязательный ввод: Не указан действительный IPv6 адрес!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr "Обязательный ввод: Не указан действительный порт!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
+msgid "Max. client connections"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
msgid "Maximum number of client connections that will be served."
msgstr "Максимальное число обслуживаемых клиентских подключений."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr "Максимальный размер буфера для фильтрации содержимого (в Кб)."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr "Дополнительно"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr "Не установлена"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr "Не используйте символ '/'."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
+msgid "Misc"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr ""
"Отсутствуют неустранимые ошибки - *мы настоятельно рекомендуем включить эту "
"функцию*"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
"Количество секунд по истечении которых, время сокета истекает, если данные "
"не получены."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
"Количество секунд по истечении которых, соединение не будет использоваться "
"повторно."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
+msgid "Permit access"
msgstr ""
-"Только когда используются 'сторонние фильтры', Privoxy должен создавать "
-"временные файлы."
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr "Установите текущую версию !"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr "Нажмите кнопку [Читать]"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Please read Privoxy manual for details!"
msgstr "Ознакомьтесь с руководством Privoxy!"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr "Обновите до текущей версии!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
+msgid "Privoxy"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
+msgid "Privoxy Settings"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
+#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy"
msgstr "Privoxy WEB proxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"использует ряд других файлов для дополнительной настройки, оказания помощи и "
"ведения системного журнала."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
-msgstr ""
-"Privoxy - это свободный веб-прокси с расширенными возможностями фильтрации "
-"интернет-контента для защиты конфиденциальности (приватности) пользователей "
-"сети Интернет. Изменения содержания веб-страниц, управления cookies, "
-"ограничения доступа к некоторым сайтам и удаления рекламы, баннеров, "
-"всплывающих окон, а также любого другого нежелательного контента («интернет-"
-"мусора»)."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr "Читать / Перечитать файл журнала"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
+msgid "Proxy Info URL"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Show I/O status"
msgstr "Показать статус ввода-вывода"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status"
msgstr "Показать состояние каждого соединения"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing"
msgstr "Показать анализ заголовка"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr "Программный пакет '%s' не установлен."
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr "Программный пакет '%s' устарел."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "Запустить"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
+msgid "Single Threaded"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr "Старт / Стоп"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
+msgid "Socket timeout"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr "Запуск и остановка Privoxy WEB proxy"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
+msgid "Split large forms"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Startup banner and warnings."
msgstr "Баннер запуска и предупреждения."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
msgid "Syntax:"
msgstr "Синтаксис:"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces."
msgstr "Синтаксис: имя заголовка клиента, разделенное пробелами."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
+msgid ""
+"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]"
msgstr "Синтаксис: target_pattern http_parent[:port]"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
+msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System"
msgstr "Система"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
+msgid "Template Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
+msgid "Temporary Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
"Файл (или файлы) действий для использования. Желательно использовать "
"несколько строк 'Action Files'!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr "Адрес и TCP-порт Privoxy для входящих запросов клиентов."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
"Уровень сжатия, который передаётся в библиотеку zlib при сжатии содержимого "
"буфера."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
-msgstr "Папка в которой находится системный журнал (т.е. его файл)."
+"located).<br />No trailing \"/\", please."
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located."
msgstr "Папка, в которой находятся другие config файлы."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
"Файлы фильтров содержат правила изменения содержимого, использующие "
"регулярные выражения."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages."
msgstr "Имя хоста, показанное на страницах CGI."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory."
msgstr ""
"Используемый файл системного журнала. Имя файла относительно папки системных "
"журналов."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them."
msgstr "Порядок сортировки заголовков клиентов перед их пересылкой."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
"Код статуса заблокированных Privoxy страниц с пометкой +handle-as-empty-"
"document."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
"Механизм доверия, является экспериментальной функцией для построения Белых "
"списков и должен использоваться с осторожностью."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-"Этот параметр будет задействован, только если активирован экспериментальный "
-"механизм доверия."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
"Этот режим доступен только для отладки. Он существенно снизит "
"производительность."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
"Этот параметр будет удалён в будущих выпусках, поскольку он устарел "
"благодаря введению основных меток заголовков."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr "Страница контролирует безопасность, важные аспекты настройки Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
"Через какой SOCKS-прокси (как вариант, с каким из родительских HTTP-прокси) "
"конкретные запросы должны быть направлены."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr ""
"На какой родительский HTTP-прокси должны быть направлены определённые "
"запросы."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
+msgid "Toggle Status"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
+msgid "Tolerate pipelining"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
+msgid "Trust Info URL"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
+msgid "Trust file"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
+msgid ""
+"URL shown if access to an untrusted page is denied. Only applies if trust "
+"mechanism is enabled."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
+msgid "URL to documentation about the local Privoxy setup."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
+msgid "User Manual"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
msgid "User customizations"
msgstr "Пользовательские действия"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr "Значение не является числом"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr "Значение не между 0 и 300"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr "Значение не от 0 до 9"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr "Значения не от 1 до 4096"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr "Значение не больше 0 или пустое"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr "Диапазон значений от 1 до 4096, значение по умолчанию 4096"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "Версия"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr "Информация о версии"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
msgid "Whether intercepted requests should be treated as valid."
msgstr "Следует ли рассматривать перехваченные запросы как действительные."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
"Распознает ли Privoxy специальные заголовки HTTP для изменения состояния "
"переключения."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery."
msgstr "Сжатие буферизованного содержимого перед доставкой."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
"Должны ли исходящие соединения, сохраненные в действующих, совместно "
"использоваться различными входящими соединениями."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served."
msgstr "Могут или нет подаваться pipelined запросы."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr "Определяет, должна ли работать прокси-аутентификация через Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used."
msgstr "Может ли использоваться редактор файлов веб-действий."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used."
msgstr "Может ли использоваться веб-функция переключения."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
"Могут ли запросы на CGI-страницы Privoxy быть заблокированы или "
"перенаправлены."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
"Должен ли CGI интерфейс оставаться совместимым со сломанными HTTP-клиентами."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread."
msgstr "Должен ли выполняться только один серверный поток."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what."
msgstr "Кто имеет доступ."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr "установлено"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr "или выше"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr "требовать"
+#~ msgid ""
+#~ "A URL to be displayed in the error page that users will see if access to "
+#~ "an untrusted page is denied."
+#~ msgstr ""
+#~ "URL-адрес, отображаемый на странице ошибки, который пользователи будут "
+#~ "видеть, если доступ к ненадёжной странице запрещён."
+
+#~ msgid ""
+#~ "A URL to documentation about the local Privoxy setup, configuration or "
+#~ "policies."
+#~ msgstr ""
+#~ "URL-адрес к документации о локальной настройке, конфигурации или "
+#~ "политиках Privoxy."
+
+#~ msgid "A directory where Privoxy can create temporary files."
+#~ msgstr "Директория, в которой Privoxy будет создавать временные файлы."
+
+#~ msgid "An alternative directory where the templates are loaded from."
+#~ msgstr "Дополнительная директория, из которой будут загружаться шаблоны."
+
+#~ msgid "An email address to reach the Privoxy administrator."
+#~ msgstr "Адрес электронной почты для связи с администратором Privoxy."
+
+#~ msgid ""
+#~ "Configure here the routing of HTTP requests through a chain of multiple "
+#~ "proxies. Note that parent proxies can severely decrease your privacy "
+#~ "level. Also specified here are SOCKS proxies."
+#~ msgstr ""
+#~ "Настройте здесь маршрутизацию HTTP-запросов через цепочку прокси-"
+#~ "серверов. Учтите, что вышестоящие прокси могут существенно снизить "
+#~ "уровень приватности. Здесь также настраиваются SOCKS-прокси."
+
+#~ msgid "Delay (in seconds) during system boot before Privoxy start"
+#~ msgstr "Задержка (в секундах) во время загрузки системы до запуска Privoxy"
+
+#~ msgid "Directory does not exist!"
+#~ msgstr "Папка не существует!"
+
+#~ msgid "During delay ifup-events are not monitored !"
+#~ msgstr "Во время задержки ifup-события не отслеживаются!"
+
+#~ msgid ""
+#~ "Enable/Disable autostart of Privoxy on system startup and interface events"
+#~ msgstr ""
+#~ "Включить/выключить, автозапуск Privoxy при старте системы и событиях "
+#~ "интерфейса"
+
+#~ msgid "File '%s' not found inside Configuration Directory"
+#~ msgstr "Файл '%S' не найден в папке с config файлами"
+
+#~ msgid "File not found or empty"
+#~ msgstr "Файл не найден или пустой"
+
+#~ msgid "For help use link at the relevant option"
+#~ msgstr "Для получения справки используйте ссылку по соответствующей опции"
+
+#~ msgid ""
+#~ "If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+#~ "should not be able to bypass any blocks."
+#~ msgstr ""
+#~ "Если включено, Privoxy скрывает 'идти туда в любом случае'. Пользователь "
+#~ "не сможет обойти блокировку."
+
+#~ msgid "Invalid email address"
+#~ msgstr "Неверный email адрес"
+
+#~ msgid "Log File Viewer"
+#~ msgstr "Просмотр файла журнала"
+
+#~ msgid "Logging"
+#~ msgstr "Журналирование"
+
+#~ msgid "Mandatory Input: No Data given!"
+#~ msgstr "Обязательный ввод: не указаны данные!"
+
+#~ msgid "Mandatory Input: No Directory given!"
+#~ msgstr "Обязательный ввод: не указана папка!"
+
+#~ msgid "Mandatory Input: No Port given!"
+#~ msgstr "Обязательный ввод: Не указан порт!"
+
+#~ msgid "Mandatory Input: No files given!"
+#~ msgstr "Обязательный ввод: не указаны файлы!"
+
+#~ msgid "Mandatory Input: No valid IPv4 address or host given!"
+#~ msgstr "Обязательный ввод: Не указан действительный IPv4 адрес или хост!"
+
+#~ msgid "Mandatory Input: No valid IPv6 address given!"
+#~ msgstr "Обязательный ввод: Не указан действительный IPv6 адрес!"
+
+#~ msgid "Mandatory Input: No valid Port given!"
+#~ msgstr "Обязательный ввод: Не указан действительный порт!"
+
+#~ msgid "Miscellaneous"
+#~ msgstr "Дополнительно"
+
+#~ msgid "NOT installed"
+#~ msgstr "Не установлена"
+
+#~ msgid "No trailing '/', please."
+#~ msgstr "Не используйте символ '/'."
+
+#~ msgid ""
+#~ "Only when using 'external filters', Privoxy has to create temporary files."
+#~ msgstr ""
+#~ "Только когда используются 'сторонние фильтры', Privoxy должен создавать "
+#~ "временные файлы."
+
+#~ msgid "Please install current version !"
+#~ msgstr "Установите текущую версию !"
+
+#~ msgid "Please press [Read] button"
+#~ msgstr "Нажмите кнопку [Читать]"
+
+#~ msgid "Please update to the current version!"
+#~ msgstr "Обновите до текущей версии!"
+
+#~ msgid ""
+#~ "Privoxy is a non-caching web proxy with advanced filtering capabilities "
+#~ "for enhancing privacy, modifying web page data and HTTP headers, "
+#~ "controlling access, and removing ads and other obnoxious Internet junk."
+#~ msgstr ""
+#~ "Privoxy - это свободный веб-прокси с расширенными возможностями "
+#~ "фильтрации интернет-контента для защиты конфиденциальности (приватности) "
+#~ "пользователей сети Интернет. Изменения содержания веб-страниц, управления "
+#~ "cookies, ограничения доступа к некоторым сайтам и удаления рекламы, "
+#~ "баннеров, всплывающих окон, а также любого другого нежелательного "
+#~ "контента («интернет-мусора»)."
+
+#~ msgid "Read / Reread log file"
+#~ msgstr "Читать / Перечитать файл журнала"
+
+#~ msgid "Software package '%s' is not installed."
+#~ msgstr "Программный пакет '%s' не установлен."
+
+#~ msgid "Software package '%s' is outdated."
+#~ msgstr "Программный пакет '%s' устарел."
+
+#~ msgid "Start"
+#~ msgstr "Запустить"
+
+#~ msgid "Start / Stop"
+#~ msgstr "Старт / Стоп"
+
+#~ msgid "Start/Stop Privoxy WEB Proxy"
+#~ msgstr "Запуск и остановка Privoxy WEB proxy"
+
+#~ msgid ""
+#~ "The directory where all logging takes place (i.e. where the logfile is "
+#~ "located)."
+#~ msgstr "Папка в которой находится системный журнал (т.е. его файл)."
+
+#~ msgid ""
+#~ "The value of this option only matters if the experimental trust mechanism "
+#~ "has been activated."
+#~ msgstr ""
+#~ "Этот параметр будет задействован, только если активирован "
+#~ "экспериментальный механизм доверия."
+
+#~ msgid "Value is not a number"
+#~ msgstr "Значение не является числом"
+
+#~ msgid "Value not between 0 and 300"
+#~ msgstr "Значение не между 0 и 300"
+
+#~ msgid "Value not between 0 and 9"
+#~ msgstr "Значение не от 0 до 9"
+
+#~ msgid "Value not between 1 and 4096"
+#~ msgstr "Значения не от 1 до 4096"
+
+#~ msgid "Value not greater 0 or empty"
+#~ msgstr "Значение не больше 0 или пустое"
+
+#~ msgid "Version"
+#~ msgstr "Версия"
+
+#~ msgid "Version Information"
+#~ msgstr "Информация о версии"
+
+#~ msgid "installed"
+#~ msgstr "установлено"
+
+#~ msgid "or higher"
+#~ msgstr "или выше"
+
+#~ msgid "required"
+#~ msgstr "требовать"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2023-07-09 09:41+0000\n"
-"Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsprivoxy/sk/>\n"
-"Language: sk\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Weblate 5.0-dev\n"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
-msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
-msgid "Access Control"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
-msgid "Actions that are applied to all sites and maybe overruled later on."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
-msgid ""
-"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
-"server."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
-msgid "Boot delay"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
-msgid "CGI user interface"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
-msgid "Common Log Format"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
-msgid "Debug GIF de-animation"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
-msgid "Debug force feature"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
-msgid "Debug redirects"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
-msgid "Debug regular expression filters"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
-msgid "Disabled == Transparent Proxy Mode"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
-msgid "Documentation"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
-msgid "Enable proxy authentication forwarding"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
-msgid "Enable/Disable filtering when Privoxy starts."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
-msgid "Enabled"
-msgstr "Zapnuté"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
-msgid ""
-"Enabling this option is NOT recommended if there is no parent proxy that "
-"requires authentication!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
-msgid "Files and Directories"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
-msgid "Forwarding"
-msgstr ""
-
-#: applications/luci-app-privoxy/root/usr/share/rpcd/acl.d/luci-app-privoxy.json:3
-msgid "Grant UCI access for luci-app-privoxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
-msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
-"should not be able to bypass any blocks."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
-msgid ""
-"If you intend to operate Privoxy for more users than just yourself, it might "
-"be a good idea to let them know how to reach you, what you block and why you "
-"do that, your policies, etc."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
-msgid "It is NOT recommended for the casual user."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
-msgid "Location of the Privoxy User Manual."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
-msgid "Log all data read from the network"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
-msgid "Log all data written to the network"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
-msgid "Log the applying actions"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
-msgid ""
-"Log the destination for each request Privoxy let through. See also 'Debug "
-"1024'."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
-msgid ""
-"Log the destination for requests Privoxy didn't let through, and the reason "
-"why."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr "Zaznamenávanie"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
-msgid "Main actions file"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
-msgid "Mandatory Input: No File given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
-msgid "Maximum number of client connections that will be served."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
-msgid "Maximum size (in KB) of the buffer for content filtering."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr "Ostatné"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
-msgid "Non-fatal errors - *we highly recommended enabling this*"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
-msgid ""
-"Number of seconds after which a socket times out if no data is received."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
-msgid ""
-"Number of seconds after which an open connection will no longer be reused."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
-msgid "Please read Privoxy manual for details!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
-msgid "Privoxy WEB proxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
-msgid ""
-"Privoxy can (and normally does) use a number of other files for additional "
-"configuration, help and logging. This section of the configuration file "
-"tells Privoxy where to find those other files."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
-msgid "Show I/O status"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
-msgid "Show each connection status"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
-msgid "Show header parsing"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "Štart"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
-msgid "Startup banner and warnings."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
-msgid "Syntax:"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
-msgid "Syntax: Client header names delimited by spaces."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
-msgid "Syntax: target_pattern http_parent[:port]"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
-msgid "System"
-msgstr "Systém"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
-msgid ""
-"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
-"are in fact recommended!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
-msgid ""
-"The address and TCP port on which Privoxy will listen for client requests."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
-msgid ""
-"The compression level that is passed to the zlib library when compressing "
-"buffered content."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
-msgid ""
-"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
-msgid "The directory where the other configuration files are located."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
-msgid ""
-"The filter files contain content modification rules that use regular "
-"expressions."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
-msgid "The hostname shown on the CGI pages."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
-msgid "The log file to use. File name, relative to log directory."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
-msgid "The order in which client headers are sorted before forwarding them."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
-msgid ""
-"The status code Privoxy returns for pages blocked with +handle-as-empty-"
-"document."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
-msgid ""
-"The trust mechanism is an experimental feature for building white-lists and "
-"should be used with care."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
-msgid ""
-"This option is only there for debugging purposes. It will drastically reduce "
-"performance."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
-msgid ""
-"This option will be removed in future releases as it has been obsoleted by "
-"the more general header taggers."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
-msgid ""
-"This tab controls the security-relevant aspects of Privoxy's configuration."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
-msgid ""
-"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
-"specific requests should be routed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
-msgid "To which parent HTTP proxy specific requests should be routed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
-msgid "User customizations"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
-msgid "Value range 1 to 4096, no entry defaults to 4096"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "Verzia"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
-msgid "Whether intercepted requests should be treated as valid."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
-msgid ""
-"Whether or not Privoxy recognizes special HTTP headers to change toggle "
-"state."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
-msgid "Whether or not buffered content is compressed before delivery."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
-msgid ""
-"Whether or not outgoing connections that have been kept alive should be "
-"shared between different incoming connections."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
-msgid "Whether or not pipelined requests should be served."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
-msgid "Whether or not proxy authentication through Privoxy should work."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
-msgid "Whether or not the web-based actions file editor may be used."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
-msgid "Whether or not the web-based toggle feature may be used."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
-msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
-msgid ""
-"Whether the CGI interface should stay compatible with broken HTTP clients."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
-msgid "Whether to run only one server thread."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
-msgid "Who can access what."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.10.2-dev\n"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
+"A directory where Privoxy can create temporary files.<br /><strong>Only when "
+"using 'external filters', Privoxy has to create temporary files.</strong>"
msgstr ""
-"En URL som ska visas på felsidan som användare kommer se om tillgång till en "
-"ej pålitlig sida nekas."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
+msgid "Accept intercepted requests"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr "En mapp där Privoxy kan skapa tillfälliga filer."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "Access Control"
msgstr "Åtkomstkontroll"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
+msgid "Action Files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr "En alternativ mapp som mallar laddas från."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
+msgid "Admin Email"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr "En e-postadress för att nå Privoxy-administratören."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
+msgid "Allow CGI request crunching"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
+msgid ""
+"An alternative directory where the templates are loaded from.<br />No "
+"trailing \"/\", please."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
+msgid "Buffer Limit"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface"
msgstr "CGI-användargränssnitt"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
+msgid "Client header order"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format"
msgstr "Vanliga loggformat"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
+msgid "Compression level"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
+msgid "Configuration Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
+msgid "Configure the Privoxy proxy daemon settings."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
+msgid "Connection sharing"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
+msgid "Debug 1"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
+msgid "Debug 1024"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
+msgid "Debug 128"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
+msgid "Debug 16"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
+msgid "Debug 2"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
+msgid "Debug 2048"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
+msgid "Debug 256"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
+msgid "Debug 32"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
+msgid "Debug 32768"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
+msgid "Debug 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
+msgid "Debug 4096"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
+msgid "Debug 512"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
+msgid "Debug 64"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
+msgid "Debug 65536"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
+msgid "Debug 8"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
+msgid "Debug 8192"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects"
msgstr "Felsök omdirigeringar"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
+msgid "Default server timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
+msgid "Delay (in seconds) during system boot before Privoxy starts."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr "Mappen finns inte!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
+msgid "Deny access"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode"
msgstr "Inaktiverad == Transparent Proxy-läge"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "Documentation"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
+msgid "Email address for the Privoxy administrator."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
+msgid "Enable action file editor"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
+msgid "Enable compression"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
+msgid "Enable remote toggle"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
+msgid "Enable remote toggle via HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
+msgid "Enable/Disable autostart of Privoxy"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts."
msgstr "Aktivera/Inaktivera filtrering när Privoxy startar."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled"
msgstr "Aktiverad"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
"Att aktivera det här alternativet är INTE rekommenderat om det inte finns "
"någon uppnbar proxy som kräver autentisering!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr "Filen '%s' hittades inte inuti konfigurationsmappen"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr "Filen hittades inte eller så är den tom"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
+msgid "Enforce page blocking"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid "Files and Directories"
msgstr "Filer och Mappar"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr "För hjälp använd länk vid relevant alternativ"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
+msgid "Filter files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
+msgid "Forward HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
+msgid "Forward SOCKS 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
+msgid "Forward SOCKS 4A"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
+msgid "Forward SOCKS 5"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
+msgid "Forward SOCKS 5t"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding"
msgstr "Vidarebefordring"
msgid "Grant UCI access for luci-app-privoxy"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
+msgid "Handle as empty doc returns ok"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+"If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"do that, your policies, etc."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr "Ogiltig e-postadress"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
msgid "It is NOT recommended for the casual user."
msgstr "Det är INTE rekommenderat för den vanliga användaren."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
+msgid "Keep-alive timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
+msgid "Listen addresses"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual."
msgstr "Plats för Privoxy's användarmanual."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr "Visare av loggfil"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
+msgid "Log Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
+msgid "Log File"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network"
msgstr "Logga all läst data från nätverket"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network"
msgstr "Logga all data som skrivits till nätverket"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions"
msgstr "Logga de verkställande handlingarna"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr "Loggning"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Main actions file"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr "Obligatorisk inmatning: Ingen data angavs!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr "Obligatorisk inmatning: Ingen mapp angavs!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No File given!"
msgstr "Obligatorisk inmatning: Ingen fil angavs!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr "Obligatorisk inmatning: Ingen port angavs!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr "Obligatorisk inmatning: Inga filer angavs!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
-msgstr "Obligatorisk inmatning: Ingen giltig IPv4-adress eller värd angavs!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr "Obligatorisk inmatning: Ingen giltig IPv6-adress angavs!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr "Obligatorisk inmatning: Ingen giltig port angavs!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
+msgid "Max. client connections"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
msgid "Maximum number of client connections that will be served."
msgstr "Maximalt antal klientanslutningar som blir betjänade."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr "Diverse"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr "INTE installerad"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr "Vänligen, inget eftersläpande '/'."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
+msgid "Misc"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr ""
"Icke-dödliga fel - *vi rekommenderar verkligen att man aktiverar det här*"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
+msgid "Permit access"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr "Vänligen installera den nuvarande versionen !"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr "Vänligen tryck på [Läs]-knappen"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Please read Privoxy manual for details!"
msgstr "Vänligen läs Privoxy-manualen för detaljer!"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr "Vänligen uppdatera till den nuvarande versionen!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
+msgid "Privoxy"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
+msgid "Privoxy Settings"
+msgstr ""
+
+#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy"
msgstr "WEB-proxyn Privoxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"tells Privoxy where to find those other files."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
+msgid "Proxy Info URL"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr "Läs / Läs om loggfilen"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Show I/O status"
msgstr "Visa I/O-status"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status"
msgstr "Visa varje anslutnings status"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
+msgid "Single Threaded"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
+msgid "Socket timeout"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "Starta"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr "Starta / Stoppa"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr "Starta/Stoppa Privoxy WEB-proxy"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
+msgid "Split large forms"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Startup banner and warnings."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
msgid "Syntax:"
msgstr "Syntax:"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
+msgid ""
+"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
+msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System"
msgstr "System"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
+msgid "Template Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
+msgid "Temporary Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
+"located).<br />No trailing \"/\", please."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages."
msgstr "Värdnamnet som visas på CGI-sidor."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory."
msgstr "Loggfilen att använda. Filnamn, relativt till logg-mappen."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
-msgid "User customizations"
-msgstr "Anpassningar för användare"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
+msgid "Toggle Status"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr "Värdet är inte ett nummer"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
+msgid "Tolerate pipelining"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
+msgid "Trust Info URL"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr "Värdet är inte mellan 0 och 9"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
+msgid "Trust file"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr "Värdet är inte mellan 1 och 4096"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
+msgid ""
+"URL shown if access to an untrusted page is denied. Only applies if trust "
+"mechanism is enabled."
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr "Värdet är inte större än 0 eller tomt"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
+msgid "URL to documentation about the local Privoxy setup."
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
-msgid "Value range 1 to 4096, no entry defaults to 4096"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
+msgid "User Manual"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "Version"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
+msgid "User customizations"
+msgstr "Anpassningar för användare"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr "Information om versionen"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
+msgid "Value range 1 to 4096, no entry defaults to 4096"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
msgid "Whether intercepted requests should be treated as valid."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread."
msgstr "Om det endast ska köras en server-tråd."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what."
msgstr "Vem som kan komma åt vad."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr "installerad"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr "eller högre"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr "nödvändig"
+#~ msgid ""
+#~ "A URL to be displayed in the error page that users will see if access to "
+#~ "an untrusted page is denied."
+#~ msgstr ""
+#~ "En URL som ska visas på felsidan som användare kommer se om tillgång till "
+#~ "en ej pålitlig sida nekas."
+
+#~ msgid "A directory where Privoxy can create temporary files."
+#~ msgstr "En mapp där Privoxy kan skapa tillfälliga filer."
+
+#~ msgid "An alternative directory where the templates are loaded from."
+#~ msgstr "En alternativ mapp som mallar laddas från."
+
+#~ msgid "An email address to reach the Privoxy administrator."
+#~ msgstr "En e-postadress för att nå Privoxy-administratören."
+
+#~ msgid "Directory does not exist!"
+#~ msgstr "Mappen finns inte!"
+
+#~ msgid "File '%s' not found inside Configuration Directory"
+#~ msgstr "Filen '%s' hittades inte inuti konfigurationsmappen"
+
+#~ msgid "File not found or empty"
+#~ msgstr "Filen hittades inte eller så är den tom"
+
+#~ msgid "For help use link at the relevant option"
+#~ msgstr "För hjälp använd länk vid relevant alternativ"
+
+#~ msgid "Invalid email address"
+#~ msgstr "Ogiltig e-postadress"
+
+#~ msgid "Log File Viewer"
+#~ msgstr "Visare av loggfil"
+
+#~ msgid "Logging"
+#~ msgstr "Loggning"
+
+#~ msgid "Mandatory Input: No Data given!"
+#~ msgstr "Obligatorisk inmatning: Ingen data angavs!"
+
+#~ msgid "Mandatory Input: No Directory given!"
+#~ msgstr "Obligatorisk inmatning: Ingen mapp angavs!"
+
+#~ msgid "Mandatory Input: No Port given!"
+#~ msgstr "Obligatorisk inmatning: Ingen port angavs!"
+
+#~ msgid "Mandatory Input: No files given!"
+#~ msgstr "Obligatorisk inmatning: Inga filer angavs!"
+
+#~ msgid "Mandatory Input: No valid IPv4 address or host given!"
+#~ msgstr "Obligatorisk inmatning: Ingen giltig IPv4-adress eller värd angavs!"
+
+#~ msgid "Mandatory Input: No valid IPv6 address given!"
+#~ msgstr "Obligatorisk inmatning: Ingen giltig IPv6-adress angavs!"
+
+#~ msgid "Mandatory Input: No valid Port given!"
+#~ msgstr "Obligatorisk inmatning: Ingen giltig port angavs!"
+
+#~ msgid "Miscellaneous"
+#~ msgstr "Diverse"
+
+#~ msgid "NOT installed"
+#~ msgstr "INTE installerad"
+
+#~ msgid "No trailing '/', please."
+#~ msgstr "Vänligen, inget eftersläpande '/'."
+
+#~ msgid "Please install current version !"
+#~ msgstr "Vänligen installera den nuvarande versionen !"
+
+#~ msgid "Please press [Read] button"
+#~ msgstr "Vänligen tryck på [Läs]-knappen"
+
+#~ msgid "Please update to the current version!"
+#~ msgstr "Vänligen uppdatera till den nuvarande versionen!"
+
+#~ msgid "Read / Reread log file"
+#~ msgstr "Läs / Läs om loggfilen"
+
+#~ msgid "Start"
+#~ msgstr "Starta"
+
+#~ msgid "Start / Stop"
+#~ msgstr "Starta / Stoppa"
+
+#~ msgid "Start/Stop Privoxy WEB Proxy"
+#~ msgstr "Starta/Stoppa Privoxy WEB-proxy"
+
+#~ msgid "Value is not a number"
+#~ msgstr "Värdet är inte ett nummer"
+
+#~ msgid "Value not between 0 and 9"
+#~ msgstr "Värdet är inte mellan 0 och 9"
+
+#~ msgid "Value not between 1 and 4096"
+#~ msgstr "Värdet är inte mellan 1 och 4096"
+
+#~ msgid "Value not greater 0 or empty"
+#~ msgstr "Värdet är inte större än 0 eller tomt"
+
+#~ msgid "Version"
+#~ msgstr "Version"
+
+#~ msgid "Version Information"
+#~ msgstr "Information om versionen"
+
+#~ msgid "installed"
+#~ msgstr "installerad"
+
+#~ msgid "or higher"
+#~ msgstr "eller högre"
+
+#~ msgid "required"
+#~ msgstr "nödvändig"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.10-dev\n"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
+"A directory where Privoxy can create temporary files.<br /><strong>Only when "
+"using 'external filters', Privoxy has to create temporary files.</strong>"
msgstr ""
-"நம்பத்தகாத பக்கத்திற்கான அணுகல் மறுக்கப்படுகிறதா என்று பயனர்கள் பார்க்கும் பிழை பக்கத்தில் "
-"காண்பிக்கப்பட வேண்டிய முகவரி."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
-msgstr "உள்ளக தனியுரிமை அமைப்பு, உள்ளமைவு அல்லது கொள்கைகள் பற்றிய ஆவணங்களுக்கான முகவரி."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr "தனியுரிமை தற்காலிக கோப்புகளை உருவாக்கக்கூடிய ஒரு அடைவு."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
+msgid "Accept intercepted requests"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "Access Control"
msgstr "நுழைவு கட்டுப்பாடு"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
+msgid "Action Files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr "எல்லா தளங்களுக்கும் பயன்படுத்தப்படும் செயல்கள் மற்றும் பின்னர் மீறப்படலாம்."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr "வார்ப்புருக்கள் ஏற்றப்படும் ஒரு மாற்று அடைவு."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
+msgid "Admin Email"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr "தனியுரிமை நிர்வாகியை அடைய ஒரு மின்னஞ்சல் முகவரி."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
+msgid "Allow CGI request crunching"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
+msgid ""
+"An alternative directory where the templates are loaded from.<br />No "
+"trailing \"/\", please."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
msgstr "சேவையகத்தால் குறிப்பிடப்படாவிட்டால் சேவையக பக்கமாக (நொடிகளில்) கருதப்படுகிறது."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay"
msgstr "துவக்க நேரந்தவறுகை"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
+msgid "Buffer Limit"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface"
msgstr "சிசிஐ பயனர் இடைமுகம்"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
+msgid "Client header order"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format"
msgstr "பொதுவான பதிவு வடிவம்"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
+msgid "Compression level"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
+msgid "Configuration Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
+msgid "Configure the Privoxy proxy daemon settings."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
+msgid "Connection sharing"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
+msgid "Debug 1"
msgstr ""
-"பல ப்ராக்சிகளின் சங்கிலி மூலம் HTTP கோரிக்கைகளின் ரூட்டிங் இங்கே உள்ளமைக்கவும். பெற்றோர் "
-"ப்ராக்சிகள் உங்கள் தனியுரிமை அளவைக் கடுமையாகக் குறைக்க முடியும் என்பதை நினைவில் கொள்க. "
-"சாக்ச் ப்ராக்சிகள் இங்கே குறிப்பிடப்பட்டுள்ளன."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
+msgid "Debug 1024"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
+msgid "Debug 128"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
+msgid "Debug 16"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
+msgid "Debug 2"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
+msgid "Debug 2048"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
+msgid "Debug 256"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
+msgid "Debug 32"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
+msgid "Debug 32768"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
+msgid "Debug 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
+msgid "Debug 4096"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
+msgid "Debug 512"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
+msgid "Debug 64"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
+msgid "Debug 65536"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
+msgid "Debug 8"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
+msgid "Debug 8192"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation"
msgstr "பிழைத்திருத்த GIF டி-அனிமேசன்"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature"
msgstr "பிழைத்திருத்த ஆற்றல் நற்பொருத்தம்"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects"
msgstr "பிழைத்திருத்த வழிமாற்றுகள்"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters"
msgstr "வழக்கமான வெளிப்பாடு வடிப்பான்களை பிழைத்திருத்தவும்"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
-msgstr "தனியுரிமை தொடக்கத்திற்கு முன் கணினி துவக்கத்தின் போது நேரந்தவறுகை (விநாடிகளில்)"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
+msgid "Default server timeout"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr "அடைவு இல்லை!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
+msgid "Delay (in seconds) during system boot before Privoxy starts."
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
+msgid "Deny access"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode"
msgstr "முடக்கப்பட்டது == வெளிப்படையான பதிலாள் பயன்முறை"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "Documentation"
msgstr "ஆவணப்படுத்துதல்"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr "தாமதத்தின் போது IFUP- நிகழ்வுகள் கண்காணிக்கப்படவில்லை!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
+msgid "Email address for the Privoxy administrator."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
+msgid "Enable action file editor"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
+msgid "Enable compression"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding"
msgstr "பதிலாள் அங்கீகார பகிர்தலை இயக்கவும்"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
+msgid "Enable remote toggle"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
+msgid "Enable remote toggle via HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
+msgid "Enable/Disable autostart of Privoxy"
msgstr ""
-"கணினி தொடக்க மற்றும் இடைமுக நிகழ்வுகளில் தனியுரிமையின் ஆட்டோச்டார்ட்டை இயக்கவும்/முடக்கவும்"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts."
msgstr "தனியுரிமை தொடங்கும் போது வடிகட்டலை இயக்கவும்/முடக்கவும்."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled"
msgstr "இயக்கப்பட்டது"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
"ஏற்பு தேவைப்படும் பெற்றோர் பதிலாள் இல்லாவிட்டால் இந்த விருப்பத்தை இயக்குவது "
"பரிந்துரைக்கப்படவில்லை!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr "உள்ளமைவு கோப்பகத்திற்குள் '%s' காணப்படவில்லை"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr "கோப்பு கிடைக்கவில்லை அல்லது காலியாக இல்லை"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
+msgid "Enforce page blocking"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid "Files and Directories"
msgstr "கோப்புகள் மற்றும் கோப்பகங்கள்"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr "உதவிக்கு தொடர்புடைய விருப்பத்தில் இணைப்பைப் பயன்படுத்தவும்"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
+msgid "Filter files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
+msgid "Forward HTTP"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
+msgid "Forward SOCKS 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
+msgid "Forward SOCKS 4A"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
+msgid "Forward SOCKS 5"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
+msgid "Forward SOCKS 5t"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding"
msgstr "மேலனுப்புகை"
msgid "Grant UCI access for luci-app-privoxy"
msgstr "லூசி-ஆப்-பிரிவாக்சிக்கு யுசிஐ அணுகலை வழங்கவும்"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
+msgid "Handle as empty doc returns ok"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+"If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
-"இயக்கப்பட்டால், பிரைவாக்சி 'எப்படியும் செல்லுங்கள்' இணைப்பை மறைக்கிறது. எந்தவொரு "
-"தொகுதிகளையும் கடந்து செல்ல பயனர் வெளிப்படையாக இருக்க முடியாது."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"அடைவது, நீங்கள் எதைத் தடுப்பது, ஏன் அதைச் செய்கிறீர்கள், உங்கள் கொள்கைகள் போன்றவற்றை "
"அவர்களுக்குத் தெரியப்படுத்துவது நல்ல யோசனையாக இருக்கலாம்."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr "தவறான மின்னஞ்சல் முகவரி"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
msgid "It is NOT recommended for the casual user."
msgstr "சாதாரண பயனருக்கு இது பரிந்துரைக்கப்படவில்லை."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
+msgid "Keep-alive timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
+msgid "Listen addresses"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual."
msgstr "தனியுரிமை பயனர் கையேட்டின் இருப்பிடம்."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr "பதிவு கோப்பு பார்வையாளர்"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
+msgid "Log Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
+msgid "Log File"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network"
msgstr "நெட்வொர்க்கிலிருந்து படித்த எல்லா தரவையும் பதிவு செய்யுங்கள்"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network"
msgstr "நெட்வொர்க்கில் எழுதப்பட்ட எல்லா தரவையும் பதிவு செய்யுங்கள்"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions"
msgstr "பொருந்தும் செயல்களை பதிவு செய்யுங்கள்"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
msgstr "ஒவ்வொரு கோரிக்கைக்கும் இலக்கை பதிவு செய்யுங்கள். 'பிழைத்திருத்த 1024' ஐயும் காண்க."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
msgstr "கோரிக்கைகளுக்கான இலக்கை பதிவுசெய்க, தனியுரிமை அனுமதிக்கவில்லை, அதற்கான காரணம்."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr "பதிவு"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Main actions file"
msgstr "முக்கிய செயல்கள் கோப்பு"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr "கட்டாய உள்ளீடு: தரவு எதுவும் கொடுக்கப்படவில்லை!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr "கட்டாய உள்ளீடு: கோப்பகம் எதுவும் கொடுக்கப்படவில்லை!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No File given!"
msgstr "கட்டாய உள்ளீடு: கோப்பு எதுவும் கொடுக்கப்படவில்லை!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr "கட்டாய உள்ளீடு: துறைமுகம் எதுவும் கொடுக்கப்படவில்லை!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr "கட்டாய உள்ளீடு: கோப்புகள் எதுவும் கொடுக்கப்படவில்லை!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
-msgstr "கட்டாய உள்ளீடு: செல்லுபடியாகும் ஐபிவி 4 முகவரி அல்லது புரவலன் வழங்கப்படவில்லை!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr "கட்டாய உள்ளீடு: செல்லுபடியாகும் ஐபிவி 6 முகவரி இல்லை!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr "கட்டாய உள்ளீடு: செல்லுபடியாகும் துறைமுகம் எதுவும் கொடுக்கப்படவில்லை!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
+msgid "Max. client connections"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
msgid "Maximum number of client connections that will be served."
msgstr "வழங்கப்படும் கிளையன்ட் இணைப்புகளின் அதிகபட்ச எண்ணிக்கை."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr "உள்ளடக்க வடிகட்டலுக்கான இடையகத்தின் அதிகபட்ச அளவு (KB இல்)."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr "மற்றவை"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr "நிறுவப்படவில்லை"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr "தயவுசெய்து '/', தயவுசெய்து."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
+msgid "Misc"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr "அபாயகரமான பிழைகள் - *இதை இயக்க நாங்கள் மிகவும் பரிந்துரைக்கிறோம் *"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
"தரவு எதுவும் பெறப்படாவிட்டால் ஒரு சாக்கெட் முறை வெளியேறும் வினாடிகளின் எண்ணிக்கை."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr "திறந்த இணைப்பு இனி மீண்டும் பயன்படுத்தப்படாது."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
+msgid "Permit access"
msgstr ""
-"'வெளிப்புற வடிப்பான்களை' பயன்படுத்தும்போது மட்டுமே, பிரைவ்சி தற்காலிக கோப்புகளை "
-"உருவாக்க வேண்டும்."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr "தற்போதைய பதிப்பை நிறுவவும்!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr "[படிக்க] பொத்தானை அழுத்தவும்"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Please read Privoxy manual for details!"
msgstr "விவரங்களுக்கு தனியுரிமை கையேட்டைப் படியுங்கள்!"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr "தற்போதைய பதிப்பிற்கு புதுப்பிக்கவும்!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
+msgid "Privoxy"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
+msgid "Privoxy Settings"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
+#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy"
msgstr "தனியுரிமை வலை பதிலாள்"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"செய்கிறது). உள்ளமைவு கோப்பின் இந்த பகுதி அந்த மற்ற கோப்புகளை எங்கே கண்டுபிடிப்பது என்பதை "
"தனியுரிமையைக் கூறுகிறது."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
+msgid "Proxy Info URL"
msgstr ""
-"தனியுரிமையை மேம்படுத்துதல், வலைப்பக்கத் தரவு மற்றும் HTTP தலைப்புகளை மாற்றியமைத்தல், "
-"அணுகலைக் கட்டுப்படுத்துதல் மற்றும் விளம்பரங்கள் மற்றும் பிற அருவருப்பான இணைய குப்பைகளை "
-"அகற்றுவதற்கான மேம்பட்ட வடிகட்டுதல் திறன்களைக் கொண்ட ஒரு சேவையகமற்ற வலை பதிலாள் ஆகும்."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr "பதிவு கோப்பைப் படிக்கவும் / மீண்டும் படிக்கவும்"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Show I/O status"
msgstr "I/O நிலையை காட்டு"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status"
msgstr "ஒவ்வொரு இணைப்பு நிலையையும் காட்டு"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing"
msgstr "தலைப்பு பாகுபடுத்தலைக் காட்டு"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr "மென்பொருள் தொகுப்பு '%s' நிறுவப்படவில்லை."
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr "மென்பொருள் தொகுப்பு '%s' காலாவதியானது."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "தொடங்கு"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
+msgid "Single Threaded"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr "தொடக்க / நிறுத்து"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
+msgid "Socket timeout"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr "தனியுரிமை வலை ப்ராக்சியைத் தொடங்க/நிறுத்து"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
+msgid "Split large forms"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Startup banner and warnings."
msgstr "தொடக்க பேனர் மற்றும் எச்சரிக்கைகள்."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
msgid "Syntax:"
msgstr "தொடரியல்:"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces."
msgstr "தொடரியல்: கிளையன்ட் தலைப்பு பெயர்கள் இடைவெளிகளால் பிரிக்கப்பட்டன."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
+msgid ""
+"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]"
msgstr "தொடரியல்: target_pattern http_perent [: போர்ட்]"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
+msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System"
msgstr "மண்டலம்"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
+msgid "Template Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
+msgid "Temporary Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
"பயன்படுத்த செயல்கள் (கள்). பல செயல்கள் வரை கோடுகள் அனுமதிக்கப்படுகின்றன, உண்மையில் அவை "
"பரிந்துரைக்கப்படுகின்றன!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr "கிளையன்ட் கோரிக்கைகளுக்கு தனியுரிமை கேட்கும் முகவரி மற்றும் டி.சி.பி துறைமுகம்."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
msgstr "இடையக உள்ளடக்கத்தை சுருக்கும்போது ZLIB நூலகத்திற்கு அனுப்பப்படும் சுருக்க நிலை."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
-msgstr "அனைத்து பதிவுகளும் நடைபெறும் அடைவு (அதாவது லாக்ஃபைல் அமைந்துள்ள இடத்தில்)."
+"located).<br />No trailing \"/\", please."
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located."
msgstr "மற்ற உள்ளமைவு கோப்புகள் அமைந்துள்ள அடைவு."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
msgstr ""
"வடிகட்டி கோப்புகளில் வழக்கமான வெளிப்பாடுகளைப் பயன்படுத்தும் உள்ளடக்க மாற்ற விதிகள் உள்ளன."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages."
msgstr "சிசிஐ பக்கங்களில் காட்டப்பட்டுள்ள ஓச்ட்பெயர்."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory."
msgstr "பயன்படுத்த பதிவு கோப்பு. கோப்பு பெயர், பதிவு கோப்பகத்துடன் தொடர்புடையது."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them."
msgstr "கிளையன்ட் தலைப்புகள் அவற்றை அனுப்புவதற்கு முன்பு வரிசைப்படுத்தப்படும் வரிசை."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
"+கைப்பிடி-காலியாக-ஆவணத்துடன் தடுக்கப்பட்ட பக்கங்களுக்கான நிலைக் குறியீடு தனியுரிமை "
"வருமானம்."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
"நம்பிக்கை பொறிமுறையானது வெள்ளை பட்டியல்களை உருவாக்குவதற்கான ஒரு சோதனை அம்சமாகும், "
"மேலும் இது கவனமாக பயன்படுத்தப்பட வேண்டும்."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-"சோதனை நம்பிக்கை பொறிமுறையானது செயல்படுத்தப்பட்டிருந்தால் மட்டுமே இந்த விருப்பத்தின் "
-"மதிப்பு முக்கியமானது."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
"இந்த விருப்பம் பிழைத்திருத்த நோக்கங்களுக்காக மட்டுமே உள்ளது. இது செயல்திறனைக் கடுமையாகக் "
"குறைக்கும்."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
"இந்த விருப்பம் எதிர்கால வெளியீடுகளில் அகற்றப்படும், ஏனெனில் இது மிகவும் பொதுவான தலைப்பு "
"குறிச்சொற்களால் வழக்கற்றுப் போனது."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
"இந்த தாவல் தனியுரிமையின் உள்ளமைவின் பாதுகாப்பு தொடர்பான அம்சங்களை கட்டுப்படுத்துகிறது."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
"இதன் மூலம் சாக்ச் பதிலாள் (மற்றும் விருப்பமாக பெற்றோர் HTTP ப்ராக்சி) குறிப்பிட்ட "
"கோரிக்கைகளை அனுப்ப வேண்டும்."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr "எந்த பெற்றோர் HTTP பதிலாள் குறிப்பிட்ட கோரிக்கைகளை அனுப்ப வேண்டும்."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
+msgid "Toggle Status"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
+msgid "Tolerate pipelining"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
+msgid "Trust Info URL"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
+msgid "Trust file"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
+msgid ""
+"URL shown if access to an untrusted page is denied. Only applies if trust "
+"mechanism is enabled."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
+msgid "URL to documentation about the local Privoxy setup."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
+msgid "User Manual"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
msgid "User customizations"
msgstr "பயனர் தனிப்பயனாக்கங்கள்"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr "மதிப்பு ஒரு எண் அல்ல"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr "மதிப்பு 0 முதல் 300 வரை இல்லை"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr "மதிப்பு 0 முதல் 9 வரை இல்லை"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr "மதிப்பு 1 முதல் 4096 க்கு இடையில் இல்லை"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr "மதிப்பு 0 அல்லது காலியாக இல்லை"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr "மதிப்பு வரம்பு 1 முதல் 4096 வரை, நுழைவு இல்லை 4096 க்கு இயல்புநிலை இல்லை"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "பதிப்பு"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr "பதிப்பு செய்தி"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
msgid "Whether intercepted requests should be treated as valid."
msgstr "இடைமறிக்கப்பட்ட கோரிக்கைகள் செல்லுபடியாகும் என்று கருதப்பட வேண்டுமா."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
msgstr "நிலையை மாற்றுவதற்கு சிறப்பு HTTP தலைப்புகளை தனியுரிமை அங்கீகரிக்கிறதா இல்லையா."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery."
msgstr "பிரசவத்திற்கு முன் இடையக உள்ளடக்கம் சுருக்கப்பட்டதா இல்லையா."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
"உயிருடன் வைக்கப்பட்டுள்ள வெளிச்செல்லும் இணைப்புகள் வெவ்வேறு உள்வரும் இணைப்புகளுக்கு இடையில் "
"பகிரப்பட வேண்டும்."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served."
msgstr "குழாய் பயன்படுத்தப்பட்ட கோரிக்கைகள் வழங்கப்பட வேண்டுமா இல்லையா."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr "தனியுரிமையின் மூலம் பதிலாள் ஏற்பு செயல்பட வேண்டுமா இல்லையா."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used."
msgstr "இணைய அடிப்படையிலான செயல்கள் கோப்பு எடிட்டர் பயன்படுத்தப்படலாமா இல்லையா."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used."
msgstr "இணைய அடிப்படையிலான மாற்று நற்பொருத்தம் பயன்படுத்தப்படலாமா இல்லையா."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
"தனியுரிமையின் சிசிஐ பக்கங்களுக்கான கோரிக்கைகளைத் தடுக்க முடியுமா அல்லது திருப்பி விட "
"முடியுமா."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr "சிசிஐ இடைமுகம் உடைந்த HTTP வாடிக்கையாளர்களுடன் இணக்கமாக இருக்க வேண்டுமா."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread."
msgstr "ஒரே ஒரு சேவையக நூலை மட்டுமே இயக்க வேண்டுமா."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what."
msgstr "யாரை அணுக முடியும்."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr "நிறுவப்பட்டது"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr "அல்லது அதற்கு மேற்பட்டது"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr "தேவை"
+#~ msgid ""
+#~ "A URL to be displayed in the error page that users will see if access to "
+#~ "an untrusted page is denied."
+#~ msgstr ""
+#~ "நம்பத்தகாத பக்கத்திற்கான அணுகல் மறுக்கப்படுகிறதா என்று பயனர்கள் பார்க்கும் பிழை பக்கத்தில் "
+#~ "காண்பிக்கப்பட வேண்டிய முகவரி."
+
+#~ msgid ""
+#~ "A URL to documentation about the local Privoxy setup, configuration or "
+#~ "policies."
+#~ msgstr ""
+#~ "உள்ளக தனியுரிமை அமைப்பு, உள்ளமைவு அல்லது கொள்கைகள் பற்றிய ஆவணங்களுக்கான முகவரி."
+
+#~ msgid "A directory where Privoxy can create temporary files."
+#~ msgstr "தனியுரிமை தற்காலிக கோப்புகளை உருவாக்கக்கூடிய ஒரு அடைவு."
+
+#~ msgid "An alternative directory where the templates are loaded from."
+#~ msgstr "வார்ப்புருக்கள் ஏற்றப்படும் ஒரு மாற்று அடைவு."
+
+#~ msgid "An email address to reach the Privoxy administrator."
+#~ msgstr "தனியுரிமை நிர்வாகியை அடைய ஒரு மின்னஞ்சல் முகவரி."
+
+#~ msgid ""
+#~ "Configure here the routing of HTTP requests through a chain of multiple "
+#~ "proxies. Note that parent proxies can severely decrease your privacy "
+#~ "level. Also specified here are SOCKS proxies."
+#~ msgstr ""
+#~ "பல ப்ராக்சிகளின் சங்கிலி மூலம் HTTP கோரிக்கைகளின் ரூட்டிங் இங்கே உள்ளமைக்கவும். பெற்றோர் "
+#~ "ப்ராக்சிகள் உங்கள் தனியுரிமை அளவைக் கடுமையாகக் குறைக்க முடியும் என்பதை நினைவில் "
+#~ "கொள்க. சாக்ச் ப்ராக்சிகள் இங்கே குறிப்பிடப்பட்டுள்ளன."
+
+#~ msgid "Delay (in seconds) during system boot before Privoxy start"
+#~ msgstr ""
+#~ "தனியுரிமை தொடக்கத்திற்கு முன் கணினி துவக்கத்தின் போது நேரந்தவறுகை (விநாடிகளில்)"
+
+#~ msgid "Directory does not exist!"
+#~ msgstr "அடைவு இல்லை!"
+
+#~ msgid "During delay ifup-events are not monitored !"
+#~ msgstr "தாமதத்தின் போது IFUP- நிகழ்வுகள் கண்காணிக்கப்படவில்லை!"
+
+#~ msgid ""
+#~ "Enable/Disable autostart of Privoxy on system startup and interface events"
+#~ msgstr ""
+#~ "கணினி தொடக்க மற்றும் இடைமுக நிகழ்வுகளில் தனியுரிமையின் ஆட்டோச்டார்ட்டை இயக்கவும்/"
+#~ "முடக்கவும்"
+
+#~ msgid "File '%s' not found inside Configuration Directory"
+#~ msgstr "உள்ளமைவு கோப்பகத்திற்குள் '%s' காணப்படவில்லை"
+
+#~ msgid "File not found or empty"
+#~ msgstr "கோப்பு கிடைக்கவில்லை அல்லது காலியாக இல்லை"
+
+#~ msgid "For help use link at the relevant option"
+#~ msgstr "உதவிக்கு தொடர்புடைய விருப்பத்தில் இணைப்பைப் பயன்படுத்தவும்"
+
+#~ msgid ""
+#~ "If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+#~ "should not be able to bypass any blocks."
+#~ msgstr ""
+#~ "இயக்கப்பட்டால், பிரைவாக்சி 'எப்படியும் செல்லுங்கள்' இணைப்பை மறைக்கிறது. எந்தவொரு "
+#~ "தொகுதிகளையும் கடந்து செல்ல பயனர் வெளிப்படையாக இருக்க முடியாது."
+
+#~ msgid "Invalid email address"
+#~ msgstr "தவறான மின்னஞ்சல் முகவரி"
+
+#~ msgid "Log File Viewer"
+#~ msgstr "பதிவு கோப்பு பார்வையாளர்"
+
+#~ msgid "Logging"
+#~ msgstr "பதிவு"
+
+#~ msgid "Mandatory Input: No Data given!"
+#~ msgstr "கட்டாய உள்ளீடு: தரவு எதுவும் கொடுக்கப்படவில்லை!"
+
+#~ msgid "Mandatory Input: No Directory given!"
+#~ msgstr "கட்டாய உள்ளீடு: கோப்பகம் எதுவும் கொடுக்கப்படவில்லை!"
+
+#~ msgid "Mandatory Input: No Port given!"
+#~ msgstr "கட்டாய உள்ளீடு: துறைமுகம் எதுவும் கொடுக்கப்படவில்லை!"
+
+#~ msgid "Mandatory Input: No files given!"
+#~ msgstr "கட்டாய உள்ளீடு: கோப்புகள் எதுவும் கொடுக்கப்படவில்லை!"
+
+#~ msgid "Mandatory Input: No valid IPv4 address or host given!"
+#~ msgstr ""
+#~ "கட்டாய உள்ளீடு: செல்லுபடியாகும் ஐபிவி 4 முகவரி அல்லது புரவலன் வழங்கப்படவில்லை!"
+
+#~ msgid "Mandatory Input: No valid IPv6 address given!"
+#~ msgstr "கட்டாய உள்ளீடு: செல்லுபடியாகும் ஐபிவி 6 முகவரி இல்லை!"
+
+#~ msgid "Mandatory Input: No valid Port given!"
+#~ msgstr "கட்டாய உள்ளீடு: செல்லுபடியாகும் துறைமுகம் எதுவும் கொடுக்கப்படவில்லை!"
+
+#~ msgid "Miscellaneous"
+#~ msgstr "மற்றவை"
+
+#~ msgid "NOT installed"
+#~ msgstr "நிறுவப்படவில்லை"
+
+#~ msgid "No trailing '/', please."
+#~ msgstr "தயவுசெய்து '/', தயவுசெய்து."
+
+#~ msgid ""
+#~ "Only when using 'external filters', Privoxy has to create temporary files."
+#~ msgstr ""
+#~ "'வெளிப்புற வடிப்பான்களை' பயன்படுத்தும்போது மட்டுமே, பிரைவ்சி தற்காலிக கோப்புகளை "
+#~ "உருவாக்க வேண்டும்."
+
+#~ msgid "Please install current version !"
+#~ msgstr "தற்போதைய பதிப்பை நிறுவவும்!"
+
+#~ msgid "Please press [Read] button"
+#~ msgstr "[படிக்க] பொத்தானை அழுத்தவும்"
+
+#~ msgid "Please update to the current version!"
+#~ msgstr "தற்போதைய பதிப்பிற்கு புதுப்பிக்கவும்!"
+
+#~ msgid ""
+#~ "Privoxy is a non-caching web proxy with advanced filtering capabilities "
+#~ "for enhancing privacy, modifying web page data and HTTP headers, "
+#~ "controlling access, and removing ads and other obnoxious Internet junk."
+#~ msgstr ""
+#~ "தனியுரிமையை மேம்படுத்துதல், வலைப்பக்கத் தரவு மற்றும் HTTP தலைப்புகளை மாற்றியமைத்தல், "
+#~ "அணுகலைக் கட்டுப்படுத்துதல் மற்றும் விளம்பரங்கள் மற்றும் பிற அருவருப்பான இணைய குப்பைகளை "
+#~ "அகற்றுவதற்கான மேம்பட்ட வடிகட்டுதல் திறன்களைக் கொண்ட ஒரு சேவையகமற்ற வலை பதிலாள் ஆகும்."
+
+#~ msgid "Read / Reread log file"
+#~ msgstr "பதிவு கோப்பைப் படிக்கவும் / மீண்டும் படிக்கவும்"
+
+#~ msgid "Software package '%s' is not installed."
+#~ msgstr "மென்பொருள் தொகுப்பு '%s' நிறுவப்படவில்லை."
+
+#~ msgid "Software package '%s' is outdated."
+#~ msgstr "மென்பொருள் தொகுப்பு '%s' காலாவதியானது."
+
+#~ msgid "Start"
+#~ msgstr "தொடங்கு"
+
+#~ msgid "Start / Stop"
+#~ msgstr "தொடக்க / நிறுத்து"
+
+#~ msgid "Start/Stop Privoxy WEB Proxy"
+#~ msgstr "தனியுரிமை வலை ப்ராக்சியைத் தொடங்க/நிறுத்து"
+
+#~ msgid ""
+#~ "The directory where all logging takes place (i.e. where the logfile is "
+#~ "located)."
+#~ msgstr "அனைத்து பதிவுகளும் நடைபெறும் அடைவு (அதாவது லாக்ஃபைல் அமைந்துள்ள இடத்தில்)."
+
+#~ msgid ""
+#~ "The value of this option only matters if the experimental trust mechanism "
+#~ "has been activated."
+#~ msgstr ""
+#~ "சோதனை நம்பிக்கை பொறிமுறையானது செயல்படுத்தப்பட்டிருந்தால் மட்டுமே இந்த விருப்பத்தின் "
+#~ "மதிப்பு முக்கியமானது."
+
+#~ msgid "Value is not a number"
+#~ msgstr "மதிப்பு ஒரு எண் அல்ல"
+
+#~ msgid "Value not between 0 and 300"
+#~ msgstr "மதிப்பு 0 முதல் 300 வரை இல்லை"
+
+#~ msgid "Value not between 0 and 9"
+#~ msgstr "மதிப்பு 0 முதல் 9 வரை இல்லை"
+
+#~ msgid "Value not between 1 and 4096"
+#~ msgstr "மதிப்பு 1 முதல் 4096 க்கு இடையில் இல்லை"
+
+#~ msgid "Value not greater 0 or empty"
+#~ msgstr "மதிப்பு 0 அல்லது காலியாக இல்லை"
+
+#~ msgid "Version"
+#~ msgstr "பதிப்பு"
+
+#~ msgid "Version Information"
+#~ msgstr "பதிப்பு செய்தி"
+
+#~ msgid "installed"
+#~ msgstr "நிறுவப்பட்டது"
+
+#~ msgid "or higher"
+#~ msgstr "அல்லது அதற்கு மேற்பட்டது"
+
+#~ msgid "required"
+#~ msgstr "தேவை"
msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
+"A directory where Privoxy can create temporary files.<br /><strong>Only when "
+"using 'external filters', Privoxy has to create temporary files.</strong>"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
+msgid "Accept intercepted requests"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
+msgid "Access Control"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
-msgid "Access Control"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
+msgid "Action Files"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
+msgid "Admin Email"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
+msgid "Allow CGI request crunching"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
+msgid ""
+"An alternative directory where the templates are loaded from.<br />No "
+"trailing \"/\", please."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
+msgid "Buffer Limit"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
+msgid "Client header order"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
+msgid "Compression level"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
+msgid "Configuration Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
+msgid "Configure the Privoxy proxy daemon settings."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
+msgid "Connection sharing"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
+msgid "Debug 1"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
+msgid "Debug 1024"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
+msgid "Debug 128"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
+msgid "Debug 16"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
+msgid "Debug 2"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
+msgid "Debug 2048"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
+msgid "Debug 256"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
+msgid "Debug 32"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
+msgid "Debug 32768"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
+msgid "Debug 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
+msgid "Debug 4096"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
+msgid "Debug 512"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
+msgid "Debug 64"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
+msgid "Debug 65536"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
+msgid "Debug 8"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
+msgid "Debug 8192"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
+msgid "Default server timeout"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
+msgid "Delay (in seconds) during system boot before Privoxy starts."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
+msgid "Deny access"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "Documentation"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
+msgid "Email address for the Privoxy administrator."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
+msgid "Enable action file editor"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
+msgid "Enable compression"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
+msgid "Enable remote toggle"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
+msgid "Enable remote toggle via HTTP"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
+msgid "Enable/Disable autostart of Privoxy"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
+msgid "Enforce page blocking"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
+msgid "Files and Directories"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
-msgid "Files and Directories"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
+msgid "Filter files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
+msgid "Forward HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
+msgid "Forward SOCKS 4"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
+msgid "Forward SOCKS 4A"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
+msgid "Forward SOCKS 5"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
+msgid "Forward SOCKS 5t"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding"
msgstr ""
msgid "Grant UCI access for luci-app-privoxy"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
+msgid "Handle as empty doc returns ok"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+"If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"do that, your policies, etc."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
+msgid "It is NOT recommended for the casual user."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
-msgid "It is NOT recommended for the casual user."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
+msgid "Keep-alive timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
+msgid "Listen addresses"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
+msgid "Log Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
+msgid "Log File"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Main actions file"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No File given!"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
+msgid "Max. client connections"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
msgid "Maximum number of client connections that will be served."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
+msgid "Misc"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
+msgid "Permit access"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
+msgid "Please read Privoxy manual for details!"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
-msgid "Please read Privoxy manual for details!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
+msgid "Privoxy"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
+msgid "Privoxy Settings"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
+#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"tells Privoxy where to find those other files."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
+msgid "Proxy Info URL"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Show I/O status"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
+msgid "Single Threaded"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
+msgid "Socket timeout"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
+msgid "Split large forms"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Startup banner and warnings."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
msgid "Syntax:"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
+msgid ""
+"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
+msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
+msgid "Template Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
+msgid "Temporary Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
+"located).<br />No trailing \"/\", please."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
-msgid "User customizations"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
+msgid "Toggle Status"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
+msgid "Tolerate pipelining"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
+msgid "Trust Info URL"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
+msgid "Trust file"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
+msgid ""
+"URL shown if access to an untrusted page is denied. Only applies if trust "
+"mechanism is enabled."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
+msgid "URL to documentation about the local Privoxy setup."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
-msgid "Value range 1 to 4096, no entry defaults to 4096"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
+msgid "User Manual"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
+msgid "User customizations"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
+msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
msgid "Whether intercepted requests should be treated as valid."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread."
msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what."
msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.5-dev\n"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
+"A directory where Privoxy can create temporary files.<br /><strong>Only when "
+"using 'external filters', Privoxy has to create temporary files.</strong>"
msgstr ""
-"Güvenilir olmayan bir sayfaya erişim reddedildiğinde kullanıcıların göreceği "
-"hata sayfasında görüntülenecek URL."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
+msgid "Accept intercepted requests"
msgstr ""
-"Yerel Privoxy kurulumu, yapılandırması veya politikaları hakkındaki "
-"belgelere ait URL."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr "Privoxy'nin geçici dosyalar oluşturabileceği bir dizin."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "Access Control"
msgstr "Erişim Kontrolü"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
+msgid "Action Files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr "Tüm sitelere uygulanan ve daha sonra reddedilebilecek eylemler."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr "Şablonların yüklendiği alternatif bir dizin."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
+msgid "Admin Email"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr "Privoxy yöneticisine ulaşmak için bir e-posta adresi."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
+msgid "Allow CGI request crunching"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
+msgid ""
+"An alternative directory where the templates are loaded from.<br />No "
+"trailing \"/\", please."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
"Sunucu tarafından belirtilmediyse, varsayılan sunucu tarafı canlı tutma "
"zaman aşımı (saniye cinsinden)."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay"
msgstr "Önyükleme gecikmesi"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
+msgid "Buffer Limit"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface"
msgstr "CGI kullanıcı arayüzü"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
+msgid "Client header order"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format"
msgstr "Ortak Günlük Formatı"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
+msgid "Compression level"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
+msgid "Configuration Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
+msgid "Configure the Privoxy proxy daemon settings."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
+msgid "Connection sharing"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
+msgid "Debug"
msgstr ""
-"Burada, HTTP isteklerinin birden çok proxy'den oluşan bir zincir üzerinden "
-"yönlendirilmesini yapılandırın. Ebeveyn temsilcilerinin gizlilik seviyenizi "
-"ciddi şekilde düşürebileceğini unutmayın. Burada ayrıca SOCKS vekil "
-"sunucuları da belirtilmiştir."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
+msgid "Debug 1"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
+msgid "Debug 1024"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
+msgid "Debug 128"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
+msgid "Debug 16"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
+msgid "Debug 2"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
+msgid "Debug 2048"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
+msgid "Debug 256"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
+msgid "Debug 32"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
+msgid "Debug 32768"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
+msgid "Debug 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
+msgid "Debug 4096"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
+msgid "Debug 512"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
+msgid "Debug 64"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
+msgid "Debug 65536"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
+msgid "Debug 8"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
+msgid "Debug 8192"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation"
msgstr "Hata ayıklama GIF de-animasyonu"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature"
msgstr "Hata ayıklama zorlama özelliği"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects"
msgstr "Yönlendirmelerde hata ayıklama"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters"
msgstr "Normal ifade filtrelerinde hata ayıklama"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
+msgid "Default server timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
+msgid "Delay (in seconds) during system boot before Privoxy starts."
msgstr ""
-"Privoxy başlamadan önce sistem önyüklemesi sırasında gecikme (saniye "
-"cinsinden)"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr "Dizin mevcut değil!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
+msgid "Deny access"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode"
msgstr "Devre Dışı == Şeffaf Proxy Modu"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "Documentation"
msgstr "Dokümantasyon"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr "Gecikme sırasında ifup-events izlenmez!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
+msgid "Email address for the Privoxy administrator."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
+msgid "Enable action file editor"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
+msgid "Enable compression"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding"
msgstr "Proxy kimlik doğrulamasını yönlendirmeyi etkinleştirin"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
+msgid "Enable remote toggle"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
+msgid "Enable remote toggle via HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
+msgid "Enable/Disable autostart of Privoxy"
msgstr ""
-"Sistem başlangıcında ve arayüz olaylarında Privoxy'nin otomatik "
-"başlatılmasını etkinleştirin / devre dışı bırakın"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts."
msgstr "Privoxy başladığında filtrelemeyi etkinleştirin / devre dışı bırakın."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled"
msgstr "Etkin"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
"Kimlik doğrulama gerektiren bir ana proxy yoksa bu seçeneğin "
"etkinleştirilmesi ÖNERİLMEZ!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr "Yapılandırma Dizini içinde '%s' dosyası bulunamadı"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr "Dosya bulunamadı veya boş"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
+msgid "Enforce page blocking"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid "Files and Directories"
msgstr "Dosyalar ve Dizinler"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr "Yardım için ilgili seçenekteki bağlantıyı kullanın"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
+msgid "Filter files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
+msgid "Forward HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
+msgid "Forward SOCKS 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
+msgid "Forward SOCKS 4A"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
+msgid "Forward SOCKS 5"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
+msgid "Forward SOCKS 5t"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding"
msgstr "Yönlendirme"
msgid "Grant UCI access for luci-app-privoxy"
msgstr "luci-app-privoxy için UCI erişimi verin"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
+msgid "Handle as empty doc returns ok"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+"If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
-"Etkinleştirilirse, Privoxy 'yine de oraya git' bağlantısını gizler. "
-"Kullanıcı tabii ki herhangi bir bloğu atlayamaz."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"neden yaptığınızı, politikalarınızı vb. bilmelerini sağlamak iyi bir fikir "
"olabilir."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr "Geçersiz e-posta adresi"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
msgid "It is NOT recommended for the casual user."
msgstr "Sıradan kullanıcılar için ÖNERİLMEZ."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
+msgid "Keep-alive timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
+msgid "Listen addresses"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual."
msgstr "Privoxy Kullanım Kılavuzunun Yeri."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr "Günlük Dosyası Görüntüleyicisi"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
+msgid "Log Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
+msgid "Log File"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network"
msgstr "Ağdan okunan tüm verileri günlüğe kaydedin"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network"
msgstr "Ağa yazılan tüm verileri günlüğe kaydedin"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions"
msgstr "Uygulama eylemlerini günlüğe kaydedin"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
"Privoxy'nin geçmesine izin verilen her istek için hedefi günlüğe kaydedin. "
"Ayrıca '1024 Hata Ayıklama' konusuna bakın."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
msgstr ""
"Privoxy'nin izin vermediği istekler için hedefi ve nedenini günlüğe kaydedin."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr "Günlükleme"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Main actions file"
msgstr "Ana eylemler dosyası"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr "Zorunlu Giriş: Veri verilmedi!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr "Zorunlu Giriş: Dizin verilmedi!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No File given!"
msgstr "Zorunlu Giriş: Dosya verilmedi!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr "Zorunlu Giriş: Bağlantı Noktası verilmedi!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr "Zorunlu Giriş: Dosya verilmedi!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
+msgid "Max. client connections"
msgstr ""
-"Zorunlu Giriş: Geçerli bir IPv4 adresi veya ana bilgisayar belirtilmedi!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr "Zorunlu Giriş: Geçerli bir IPv6 adresi verilmedi!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr "Zorunlu Giriş: Belirtilen geçerli Bağlantı Noktası yok!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
msgid "Maximum number of client connections that will be served."
msgstr "Sağlanacak maksimum istemci bağlantısı sayısı."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr "İçerik filtreleme için arabelleğin maksimum boyutu (KB cinsinden)."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr "Çeşitli"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr "Yüklü değil"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr "Sonda '/' yok, lütfen."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
+msgid "Misc"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr ""
"Önemli olmayan hatalar - * bunu etkinleştirmenizi şiddetle tavsiye ederiz *"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
"Veri alınmazsa soketin zaman aşımına uğramasından sonraki saniye sayısı."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr "Açık bir bağlantının artık tekrar kullanılmayacağı saniye sayısı."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
+msgid "Permit access"
msgstr ""
-"Yalnızca 'harici filtreler' kullanıldığında, Privoxy geçici dosyalar "
-"oluşturmalıdır."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr "Lütfen güncel sürümü kurun!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr "Lütfen [Oku] düğmesine basın"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Please read Privoxy manual for details!"
msgstr "Ayrıntılar için lütfen Privoxy kılavuzunu okuyun!"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr "Lütfen mevcut sürüme güncelleyin!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
+msgid "Privoxy"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
+msgid "Privoxy Settings"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
+#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy"
msgstr "Privoxy WEB proxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"kullanabilir (ve normalde kullanır). Yapılandırma dosyasının bu bölümü, "
"Privoxy'ye bu diğer dosyaları nerede bulacağını söyler."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
+msgid "Proxy Info URL"
msgstr ""
-"Privoxy, gizliliği artırmak, web sayfası verilerini ve HTTP başlıklarını "
-"değiştirmek, erişimi kontrol etmek ve reklamları ve diğer iğrenç İnternet "
-"çöplerini kaldırmak için gelişmiş filtreleme yeteneklerine sahip, önbelleğe "
-"alınmayan bir web proxy'sidir."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr "Günlük dosyasını oku / yeniden oku"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Show I/O status"
msgstr "G / Ç durumunu göster"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status"
msgstr "Her bağlantı durumunu göster"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing"
msgstr "Üstbilgi ayrıştırmasını göster"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr "Yazılım paketi '%s' kurulu değil."
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr "Yazılım paketi '%s' güncel değil."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "Başlat"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
+msgid "Single Threaded"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr "Başlat/Durdur"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
+msgid "Socket timeout"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr "Privoxy WEB Proxy'i Başlat/Durdur"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
+msgid "Split large forms"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Startup banner and warnings."
msgstr "Başlangıç başlığı ve uyarılar."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
msgid "Syntax:"
msgstr "Sözdizimi:"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces."
msgstr "Sözdizimi: Boşluklarla ayrılmış istemci başlığı adları."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
+msgid ""
+"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]"
msgstr "Sözdizimi: target_pattern http_parent[:bağlantı noktası]"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
+msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System"
msgstr "Sistem"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
+msgid "Template Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
+msgid "Temporary Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
"Kullanılacak eylem dosyaları. Birden fazla eylem dosya satırına izin verilir "
"ve aslında tavsiye edilir!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
"Privoxy'nin istemci isteklerini dinleyeceği adres ve TCP bağlantı noktası."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
"Arabelleğe alınan içerik sıkıştırılırken zlib kitaplığına iletilen "
"sıkıştırma düzeyi."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
+"located).<br />No trailing \"/\", please."
msgstr ""
-"Tüm günlük kaydının gerçekleştiği dizin (yani, günlük dosyasının bulunduğu "
-"yer)."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located."
msgstr "Diğer yapılandırma dosyalarının bulunduğu dizin."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
"Filtre dosyaları, normal ifadeler kullanan içerik değiştirme kurallarını "
"içerir."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages."
msgstr "CGI sayfalarında gösterilen ana bilgisayar adı."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory."
msgstr "Kullanılacak günlük dosyası. Günlük dizinine göre dosya adı."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them."
msgstr "İstemci başlıklarının iletilmeden önce sıralandığı sıra."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
"Privoxy durum kodu +handle-as-empty-document ile engellenen sayfalar için "
"döndürür."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
"Güven mekanizması, beyaz listeler oluşturmak için deneysel bir özelliktir ve "
"dikkatli kullanılmalıdır."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-"Bu seçeneğin değeri, yalnızca deneysel güven mekanizması etkinleştirildiyse "
-"önemlidir."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
"Bu seçenek yalnızca hata ayıklama amaçlıdır. Performansı büyük ölçüde "
"düşürecektir."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
"Bu seçenek, daha genel başlık etiketleyicileri tarafından kullanımdan "
"kaldırıldığı için gelecekteki sürümlerde kaldırılacaktır."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
"Bu sekme, Privoxy'nin yapılandırmasının güvenlikle ilgili yönlerini kontrol "
"eder."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
"Hangi SOCKS proxy'si (ve isteğe bağlı olarak hangi ana HTTP proxy'sine) özel "
"isteklerin yönlendirilmesi gerekir."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr "Hangi üst HTTP proxy'sine özgü isteklerin yönlendirilmesi gerekir."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
+msgid "Toggle Status"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
+msgid "Tolerate pipelining"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
+msgid "Trust Info URL"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
+msgid "Trust file"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
+msgid ""
+"URL shown if access to an untrusted page is denied. Only applies if trust "
+"mechanism is enabled."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
+msgid "URL to documentation about the local Privoxy setup."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
+msgid "User Manual"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
msgid "User customizations"
msgstr "Kullanıcı özelleştirmeleri"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr "Değer bir sayı değil"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr "Değer 0 ile 300 arasında değil"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr "Değer 0 ile 9 arasında değil"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr "Değer 1 ile 4096 arasında değil"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr "Değer 0'dan büyük değil veya boş"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr "Değer aralığı 1 - 4096, giriş yok ise varsayılan 4096"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "Versiyon"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr "Sürüm bilgisi"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
msgid "Whether intercepted requests should be treated as valid."
msgstr ""
"Yakalanan isteklerin geçerli olarak değerlendirilip değerlendirilmeyeceği."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
"Privoxy'nin geçiş durumunu değiştirmek için özel HTTP başlıklarını tanıyıp "
"tanımadığı."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery."
msgstr ""
"Arabelleğe alınan içeriğin teslim edilmeden önce sıkıştırılıp "
"sıkıştırılmayacağı."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
"Canlı tutulan giden bağlantıların farklı gelen bağlantılar arasında "
"paylaşılıp paylaşılmayacağı."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served."
msgstr "Ardışık düzenlenmiş isteklerin sunulup sunulmayacağı."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr ""
"Privoxy aracılığıyla proxy kimlik doğrulamasının çalışıp çalışmayacağı."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used."
msgstr ""
"Web tabanlı eylemler dosyası düzenleyicisinin kullanılıp kullanılamayacağı."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used."
msgstr "Web tabanlı geçiş özelliğinin kullanılıp kullanılamayacağı."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
"Privoxy'nin CGI sayfalarına gelen isteklerin engellenip engellenemeyeceği "
"veya yeniden yönlendirilip yönlendirilemeyeceği."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr "CGI arayüzünün bozuk HTTP istemcileriyle uyumlu olup olmayacağı."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread."
msgstr "Yalnızca bir sunucu iş parçacığının çalıştırılıp çalıştırılmayacağı."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what."
msgstr "Kim neye erişebilir."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr "kurulmuş"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr "veya daha yüksek"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr "gereklidir"
+#~ msgid ""
+#~ "A URL to be displayed in the error page that users will see if access to "
+#~ "an untrusted page is denied."
+#~ msgstr ""
+#~ "Güvenilir olmayan bir sayfaya erişim reddedildiğinde kullanıcıların "
+#~ "göreceği hata sayfasında görüntülenecek URL."
+
+#~ msgid ""
+#~ "A URL to documentation about the local Privoxy setup, configuration or "
+#~ "policies."
+#~ msgstr ""
+#~ "Yerel Privoxy kurulumu, yapılandırması veya politikaları hakkındaki "
+#~ "belgelere ait URL."
+
+#~ msgid "A directory where Privoxy can create temporary files."
+#~ msgstr "Privoxy'nin geçici dosyalar oluşturabileceği bir dizin."
+
+#~ msgid "An alternative directory where the templates are loaded from."
+#~ msgstr "Şablonların yüklendiği alternatif bir dizin."
+
+#~ msgid "An email address to reach the Privoxy administrator."
+#~ msgstr "Privoxy yöneticisine ulaşmak için bir e-posta adresi."
+
+#~ msgid ""
+#~ "Configure here the routing of HTTP requests through a chain of multiple "
+#~ "proxies. Note that parent proxies can severely decrease your privacy "
+#~ "level. Also specified here are SOCKS proxies."
+#~ msgstr ""
+#~ "Burada, HTTP isteklerinin birden çok proxy'den oluşan bir zincir "
+#~ "üzerinden yönlendirilmesini yapılandırın. Ebeveyn temsilcilerinin "
+#~ "gizlilik seviyenizi ciddi şekilde düşürebileceğini unutmayın. Burada "
+#~ "ayrıca SOCKS vekil sunucuları da belirtilmiştir."
+
+#~ msgid "Delay (in seconds) during system boot before Privoxy start"
+#~ msgstr ""
+#~ "Privoxy başlamadan önce sistem önyüklemesi sırasında gecikme (saniye "
+#~ "cinsinden)"
+
+#~ msgid "Directory does not exist!"
+#~ msgstr "Dizin mevcut değil!"
+
+#~ msgid "During delay ifup-events are not monitored !"
+#~ msgstr "Gecikme sırasında ifup-events izlenmez!"
+
+#~ msgid ""
+#~ "Enable/Disable autostart of Privoxy on system startup and interface events"
+#~ msgstr ""
+#~ "Sistem başlangıcında ve arayüz olaylarında Privoxy'nin otomatik "
+#~ "başlatılmasını etkinleştirin / devre dışı bırakın"
+
+#~ msgid "File '%s' not found inside Configuration Directory"
+#~ msgstr "Yapılandırma Dizini içinde '%s' dosyası bulunamadı"
+
+#~ msgid "File not found or empty"
+#~ msgstr "Dosya bulunamadı veya boş"
+
+#~ msgid "For help use link at the relevant option"
+#~ msgstr "Yardım için ilgili seçenekteki bağlantıyı kullanın"
+
+#~ msgid ""
+#~ "If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+#~ "should not be able to bypass any blocks."
+#~ msgstr ""
+#~ "Etkinleştirilirse, Privoxy 'yine de oraya git' bağlantısını gizler. "
+#~ "Kullanıcı tabii ki herhangi bir bloğu atlayamaz."
+
+#~ msgid "Invalid email address"
+#~ msgstr "Geçersiz e-posta adresi"
+
+#~ msgid "Log File Viewer"
+#~ msgstr "Günlük Dosyası Görüntüleyicisi"
+
+#~ msgid "Logging"
+#~ msgstr "Günlükleme"
+
+#~ msgid "Mandatory Input: No Data given!"
+#~ msgstr "Zorunlu Giriş: Veri verilmedi!"
+
+#~ msgid "Mandatory Input: No Directory given!"
+#~ msgstr "Zorunlu Giriş: Dizin verilmedi!"
+
+#~ msgid "Mandatory Input: No Port given!"
+#~ msgstr "Zorunlu Giriş: Bağlantı Noktası verilmedi!"
+
+#~ msgid "Mandatory Input: No files given!"
+#~ msgstr "Zorunlu Giriş: Dosya verilmedi!"
+
+#~ msgid "Mandatory Input: No valid IPv4 address or host given!"
+#~ msgstr ""
+#~ "Zorunlu Giriş: Geçerli bir IPv4 adresi veya ana bilgisayar belirtilmedi!"
+
+#~ msgid "Mandatory Input: No valid IPv6 address given!"
+#~ msgstr "Zorunlu Giriş: Geçerli bir IPv6 adresi verilmedi!"
+
+#~ msgid "Mandatory Input: No valid Port given!"
+#~ msgstr "Zorunlu Giriş: Belirtilen geçerli Bağlantı Noktası yok!"
+
+#~ msgid "Miscellaneous"
+#~ msgstr "Çeşitli"
+
+#~ msgid "NOT installed"
+#~ msgstr "Yüklü değil"
+
+#~ msgid "No trailing '/', please."
+#~ msgstr "Sonda '/' yok, lütfen."
+
+#~ msgid ""
+#~ "Only when using 'external filters', Privoxy has to create temporary files."
+#~ msgstr ""
+#~ "Yalnızca 'harici filtreler' kullanıldığında, Privoxy geçici dosyalar "
+#~ "oluşturmalıdır."
+
+#~ msgid "Please install current version !"
+#~ msgstr "Lütfen güncel sürümü kurun!"
+
+#~ msgid "Please press [Read] button"
+#~ msgstr "Lütfen [Oku] düğmesine basın"
+
+#~ msgid "Please update to the current version!"
+#~ msgstr "Lütfen mevcut sürüme güncelleyin!"
+
+#~ msgid ""
+#~ "Privoxy is a non-caching web proxy with advanced filtering capabilities "
+#~ "for enhancing privacy, modifying web page data and HTTP headers, "
+#~ "controlling access, and removing ads and other obnoxious Internet junk."
+#~ msgstr ""
+#~ "Privoxy, gizliliği artırmak, web sayfası verilerini ve HTTP başlıklarını "
+#~ "değiştirmek, erişimi kontrol etmek ve reklamları ve diğer iğrenç İnternet "
+#~ "çöplerini kaldırmak için gelişmiş filtreleme yeteneklerine sahip, "
+#~ "önbelleğe alınmayan bir web proxy'sidir."
+
+#~ msgid "Read / Reread log file"
+#~ msgstr "Günlük dosyasını oku / yeniden oku"
+
+#~ msgid "Software package '%s' is not installed."
+#~ msgstr "Yazılım paketi '%s' kurulu değil."
+
+#~ msgid "Software package '%s' is outdated."
+#~ msgstr "Yazılım paketi '%s' güncel değil."
+
+#~ msgid "Start"
+#~ msgstr "Başlat"
+
+#~ msgid "Start / Stop"
+#~ msgstr "Başlat/Durdur"
+
+#~ msgid "Start/Stop Privoxy WEB Proxy"
+#~ msgstr "Privoxy WEB Proxy'i Başlat/Durdur"
+
+#~ msgid ""
+#~ "The directory where all logging takes place (i.e. where the logfile is "
+#~ "located)."
+#~ msgstr ""
+#~ "Tüm günlük kaydının gerçekleştiği dizin (yani, günlük dosyasının "
+#~ "bulunduğu yer)."
+
+#~ msgid ""
+#~ "The value of this option only matters if the experimental trust mechanism "
+#~ "has been activated."
+#~ msgstr ""
+#~ "Bu seçeneğin değeri, yalnızca deneysel güven mekanizması "
+#~ "etkinleştirildiyse önemlidir."
+
+#~ msgid "Value is not a number"
+#~ msgstr "Değer bir sayı değil"
+
+#~ msgid "Value not between 0 and 300"
+#~ msgstr "Değer 0 ile 300 arasında değil"
+
+#~ msgid "Value not between 0 and 9"
+#~ msgstr "Değer 0 ile 9 arasında değil"
+
+#~ msgid "Value not between 1 and 4096"
+#~ msgstr "Değer 1 ile 4096 arasında değil"
+
+#~ msgid "Value not greater 0 or empty"
+#~ msgstr "Değer 0'dan büyük değil veya boş"
+
+#~ msgid "Version"
+#~ msgstr "Versiyon"
+
+#~ msgid "Version Information"
+#~ msgstr "Sürüm bilgisi"
+
+#~ msgid "installed"
+#~ msgstr "kurulmuş"
+
+#~ msgid "or higher"
+#~ msgstr "veya daha yüksek"
+
+#~ msgid "required"
+#~ msgstr "gereklidir"
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 5.10-dev\n"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
+"A directory where Privoxy can create temporary files.<br /><strong>Only when "
+"using 'external filters', Privoxy has to create temporary files.</strong>"
msgstr ""
-"URL-адреса, що відображається на сторінці помилки, яку користувачі "
-"бачитимуть, якщо доступ до ненадійної сторінки заборонено."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
+msgid "Accept intercepted requests"
msgstr ""
-"URL-адреса для доступу до документації про локальне налаштування, "
-"конфігурацію або політики Privoxy."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr "Каталог, у якому Privoxy може створювати тимчасові файли."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "Access Control"
msgstr "Контроль доступу"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
+msgid "Action Files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
"Дії, які застосовуються до всіх сайтів і можуть бути відхилені пізніше."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr "Альтернативний каталог, з якого завантажуються шаблони."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
+msgid "Admin Email"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr "Електронна адреса для зв’язку з адміністратором Privoxy."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
+msgid "Allow CGI request crunching"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
+msgid ""
+"An alternative directory where the templates are loaded from.<br />No "
+"trailing \"/\", please."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
"Передбачуваний час очікування підтримки активності на стороні сервера (у "
"секундах), якщо не вказано сервером."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay"
msgstr "Затримка завантаження"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
+msgid "Buffer Limit"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface"
msgstr "Інтерфейс користувача CGI"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
+msgid "Client header order"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format"
msgstr "Загальний формат журналу"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
+msgid "Compression level"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
+msgid "Configuration Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
+msgid "Configure the Privoxy proxy daemon settings."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
+msgid "Connection sharing"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
+msgid "Debug"
msgstr ""
-"Налаштуйте тут маршрутизацію HTTP-запитів через ланцюжок із кількох проксі-"
-"серверів. Зауважте, що батьківські проксі-сервери можуть значно знизити "
-"рівень конфіденційності. Тут також вказані SOCKS проксі."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
+msgid "Debug 1"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
+msgid "Debug 1024"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
+msgid "Debug 128"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
+msgid "Debug 16"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
+msgid "Debug 2"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
+msgid "Debug 2048"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
+msgid "Debug 256"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
+msgid "Debug 32"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
+msgid "Debug 32768"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
+msgid "Debug 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
+msgid "Debug 4096"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
+msgid "Debug 512"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
+msgid "Debug 64"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
+msgid "Debug 65536"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
+msgid "Debug 8"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
+msgid "Debug 8192"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation"
msgstr "Налагодити деанімацію GIF"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature"
msgstr "Функція примусового налагодження"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects"
msgstr "Перенаправлення налагодження"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters"
msgstr "Налагодити фільтри регулярних виразів"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
+msgid "Default server timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
+msgid "Delay (in seconds) during system boot before Privoxy starts."
msgstr ""
-"Затримка (у секундах) під час завантаження системи перед запуском Privoxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr "Каталог не існує!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
+msgid "Deny access"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode"
msgstr "Вимкнено == Прозорий режим проксі"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "Documentation"
msgstr "Документація"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr "Під час затримки ifup-події не відстежуються!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
+msgid "Email address for the Privoxy administrator."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
+msgid "Enable action file editor"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
+msgid "Enable compression"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding"
msgstr "Увімкнути переадресацію автентифікації проксі"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
+msgid "Enable remote toggle"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
+msgid "Enable remote toggle via HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
+msgid "Enable/Disable autostart of Privoxy"
msgstr ""
-"Увімкнути/вимкнути автозапуск Privoxy під час запуску системи та подій "
-"інтерфейсу"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts."
msgstr "Увімкнути/вимкнути фільтрацію під час запуску Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled"
msgstr "Увімкнено"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
"Вмикати цю опцію НЕ рекомендується, якщо немає батьківського проксі-сервера, "
"який вимагає автентифікації!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr "Файл \"%s\" не знайдено в каталозі конфігурації"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr "Файл не знайдено або порожній"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
+msgid "Enforce page blocking"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid "Files and Directories"
msgstr "Файли та каталоги"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr "Для довідки скористайтеся посиланням у відповідній опції"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
+msgid "Filter files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
+msgid "Forward HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
+msgid "Forward SOCKS 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
+msgid "Forward SOCKS 4A"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
+msgid "Forward SOCKS 5"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
+msgid "Forward SOCKS 5t"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding"
msgstr "Пересилання"
msgid "Grant UCI access for luci-app-privoxy"
msgstr "Надайте доступ UCI для luci-app-privoxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
+msgid "Handle as empty doc returns ok"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+"If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
-"Якщо ввімкнено, Privoxy приховує посилання «все одно перейдіть туди». "
-"Користувач, очевидно, не повинен мати можливість обходити жодні блоки."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"користувачів, а не лише для себе, було б гарною ідеєю повідомити їм, як з "
"вами зв’язатися, що ви блокуєте та чому це робите, свою політику тощо."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr "Недійсна адреса електронної пошти"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
msgid "It is NOT recommended for the casual user."
msgstr "Це НЕ рекомендовано для звичайних користувачів."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
+msgid "Keep-alive timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
+msgid "Listen addresses"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual."
msgstr "Розташування посібника користувача Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr "Перегляд файлів журналу"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
+msgid "Log Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
+msgid "Log File"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network"
msgstr "Реєструвати всі дані, зчитані з мережі"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network"
msgstr "Реєструвати всі дані, записані в мережу"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions"
msgstr "Зареєструвати дії із застосування"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
"Реєструйте призначення для кожного запиту, який пропускає Privoxy. Дивіться "
"також «Debug 1024»."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
"Зареєструйте місце призначення для запитів, які не пропустив Privoxy, і "
"причину."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr "Журналювання"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Main actions file"
msgstr "Файл основних дій"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr "Обов'язкове введення: дані не надано!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr "Обов'язкове введення: каталог не надано!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No File given!"
msgstr "Обов’язкове введення: файл не надано!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr "Обов’язкове введення: порт не вказано!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr "Обов'язкове введення: файли не надано!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
-msgstr "Обов’язкове введення: не вказано дійсну адресу IPv4 або хост!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr "Обов’язкове введення: не вказано дійсну адресу IPv6!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr "Обов’язкове введення: дійсний порт не вказано!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
+msgid "Max. client connections"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
msgid "Maximum number of client connections that will be served."
msgstr "Максимальна кількість підключень клієнта, які будуть обслуговуватися."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr "Максимальний розмір (у КБ) буфера для фільтрації вмісту."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr "Різне"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr "Не інстальовано"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr "Без кінцевих '/', будь ласка."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
+msgid "Misc"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr "Нефатальні помилки - *настійно рекомендуємо ввімкнути це*"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
"Кількість секунд, після якої сокет закінчується, якщо дані не отримано."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
"Кількість секунд, після якої відкрите з’єднання більше не "
"використовуватиметься повторно."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
+msgid "Permit access"
msgstr ""
-"Лише при використанні «зовнішніх фільтрів» Privoxy має створювати тимчасові "
-"файли."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr "Будь ласка, встановіть поточну версію!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr "Натисніть кнопку [Читати]"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Please read Privoxy manual for details!"
msgstr "Будь ласка, прочитайте інструкцію Privoxy, щоб дізнатися більше!"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr "Будь ласка, оновіть до поточної версії!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
+msgid "Privoxy"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
+msgid "Privoxy Settings"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
+#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy"
msgstr "Privoxy WEB проксі"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"для додаткової конфігурації, довідки та журналювання. Цей розділ "
"конфігураційного файлу повідомляє Privoxy, де знайти ці інші файли."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
+msgid "Proxy Info URL"
msgstr ""
-"Privoxy — це веб-проксі без кешування з розширеними можливостями фільтрації "
-"для підвищення конфіденційності, зміни даних веб-сторінок і заголовків HTTP, "
-"контролю доступу та видалення реклами та іншого неприємного інтернет-сміття."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr "Прочитати/перечитати файл журналу"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Show I/O status"
msgstr "Показати стан введення/виведення"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status"
msgstr "Показати статус кожного з’єднання"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing"
msgstr "Показати аналіз заголовка"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr "Пакунок програм '%s' не встановлено."
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr "Пакунок програм '%s' застарів."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "Запустити"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
+msgid "Single Threaded"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr "Пуск/Стоп"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
+msgid "Socket timeout"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr "Запуск/зупинка Privoxy WEB Proxy"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
+msgid "Split large forms"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Startup banner and warnings."
msgstr "Банер запуску та попередження."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
msgid "Syntax:"
msgstr "Синтаксис:"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces."
msgstr "Синтаксис: імена заголовків клієнта, розділені пробілами."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
+msgid ""
+"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]"
msgstr "Синтаксис: target_pattern http_parent[:port]"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
+msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System"
msgstr "Система"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
+msgid "Template Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
+msgid "Temporary Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
"Файл(и) дій для використання. Кілька рядків файлу дій дозволено, і насправді "
"це рекомендовано!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr "Адреса та TCP-порт, на якому Privoxy слухатиме запити клієнта."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
"Рівень стиснення, який передається до бібліотеки zlib під час стиснення "
"буферизованого вмісту."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
+"located).<br />No trailing \"/\", please."
msgstr ""
-"Каталог, де ведеться журналювання (тобто, де знаходиться файл журналу)."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located."
msgstr "Каталог, де розташовані інші конфігураційні файли."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
"Файли фільтрів містять правила зміни вмісту, які використовують регулярні "
"вирази."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages."
msgstr "Ім'я хоста, яке відображається на сторінках CGI."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory."
msgstr "Файл журналу для використання. Ім'я файлу відносно каталогу журналу."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them."
msgstr "Порядок сортування заголовків клієнта перед їх пересиланням."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
"Код статусу Privoxy повертає для сторінок, заблокованих за допомогою +handle-"
"as-empty-document."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
"Механізм довіри є експериментальною функцією для створення білих списків, і "
"використовувати його слід обережно."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-"Значення цього параметра має значення, лише якщо активовано "
-"експериментальний механізм довіри."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
msgstr ""
"Цей параметр існує лише для налагодження. Це різко знизить продуктивність."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
"Цей параметр буде видалено в наступних випусках, оскільки він застарів через "
"більш загальні теги заголовків."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr "Ця вкладка контролює важливі для безпеки аспекти конфігурації Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
"Через який проксі-сервер SOCKS (і, необов’язково, до якого батьківського "
"проксі-сервера HTTP) слід направляти конкретні запити."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr "До якого батьківського проксі-сервера HTTP слід направляти запити."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
+msgid "Toggle Status"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
+msgid "Tolerate pipelining"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
+msgid "Trust Info URL"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
+msgid "Trust file"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
+msgid ""
+"URL shown if access to an untrusted page is denied. Only applies if trust "
+"mechanism is enabled."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
+msgid "URL to documentation about the local Privoxy setup."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
+msgid "User Manual"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
msgid "User customizations"
msgstr "Налаштування користувача"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr "Значення не є числом"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr "Значення не між 0 і 300"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr "Значення не між 0 і 9"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr "Значення не між 1 і 4096"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr "Значення не більше 0 або пусте"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr "Діапазон значень від 1 до 4096, за умовчанням значення 4096 не вказано"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "Версія"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr "Інформація про версію"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
msgid "Whether intercepted requests should be treated as valid."
msgstr "Чи слід вважати перехоплені запити дійсними."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
msgstr ""
"Чи розпізнає Privoxy спеціальні заголовки HTTP для зміни стану перемикання."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery."
msgstr "Чи стискається буферизований вміст перед доставкою."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
"Чи повинні вихідні з’єднання, які підтримувалися, ділитися між різними "
"вхідними з’єднаннями."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served."
msgstr "Чи слід обслуговувати конвеєрні запити."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr "Чи повинна працювати автентифікація проксі через Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used."
msgstr "Чи можна використовувати веб-редактор файлів дій."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used."
msgstr "Чи можна використовувати веб-функцію перемикання."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr "Чи можна блокувати або перенаправляти запити до сторінок CGI Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
"Чи повинен інтерфейс CGI залишатися сумісним із несправними клієнтами HTTP."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread."
msgstr "Чи запускати лише один серверний потік."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what."
msgstr "Хто до чого може отримати доступ."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr "встановлено"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr "чи вище"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr "вимагається"
+#~ msgid ""
+#~ "A URL to be displayed in the error page that users will see if access to "
+#~ "an untrusted page is denied."
+#~ msgstr ""
+#~ "URL-адреса, що відображається на сторінці помилки, яку користувачі "
+#~ "бачитимуть, якщо доступ до ненадійної сторінки заборонено."
+
+#~ msgid ""
+#~ "A URL to documentation about the local Privoxy setup, configuration or "
+#~ "policies."
+#~ msgstr ""
+#~ "URL-адреса для доступу до документації про локальне налаштування, "
+#~ "конфігурацію або політики Privoxy."
+
+#~ msgid "A directory where Privoxy can create temporary files."
+#~ msgstr "Каталог, у якому Privoxy може створювати тимчасові файли."
+
+#~ msgid "An alternative directory where the templates are loaded from."
+#~ msgstr "Альтернативний каталог, з якого завантажуються шаблони."
+
+#~ msgid "An email address to reach the Privoxy administrator."
+#~ msgstr "Електронна адреса для зв’язку з адміністратором Privoxy."
+
+#~ msgid ""
+#~ "Configure here the routing of HTTP requests through a chain of multiple "
+#~ "proxies. Note that parent proxies can severely decrease your privacy "
+#~ "level. Also specified here are SOCKS proxies."
+#~ msgstr ""
+#~ "Налаштуйте тут маршрутизацію HTTP-запитів через ланцюжок із кількох "
+#~ "проксі-серверів. Зауважте, що батьківські проксі-сервери можуть значно "
+#~ "знизити рівень конфіденційності. Тут також вказані SOCKS проксі."
+
+#~ msgid "Delay (in seconds) during system boot before Privoxy start"
+#~ msgstr ""
+#~ "Затримка (у секундах) під час завантаження системи перед запуском Privoxy"
+
+#~ msgid "Directory does not exist!"
+#~ msgstr "Каталог не існує!"
+
+#~ msgid "During delay ifup-events are not monitored !"
+#~ msgstr "Під час затримки ifup-події не відстежуються!"
+
+#~ msgid ""
+#~ "Enable/Disable autostart of Privoxy on system startup and interface events"
+#~ msgstr ""
+#~ "Увімкнути/вимкнути автозапуск Privoxy під час запуску системи та подій "
+#~ "інтерфейсу"
+
+#~ msgid "File '%s' not found inside Configuration Directory"
+#~ msgstr "Файл \"%s\" не знайдено в каталозі конфігурації"
+
+#~ msgid "File not found or empty"
+#~ msgstr "Файл не знайдено або порожній"
+
+#~ msgid "For help use link at the relevant option"
+#~ msgstr "Для довідки скористайтеся посиланням у відповідній опції"
+
+#~ msgid ""
+#~ "If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+#~ "should not be able to bypass any blocks."
+#~ msgstr ""
+#~ "Якщо ввімкнено, Privoxy приховує посилання «все одно перейдіть туди». "
+#~ "Користувач, очевидно, не повинен мати можливість обходити жодні блоки."
+
+#~ msgid "Invalid email address"
+#~ msgstr "Недійсна адреса електронної пошти"
+
+#~ msgid "Log File Viewer"
+#~ msgstr "Перегляд файлів журналу"
+
+#~ msgid "Logging"
+#~ msgstr "Журналювання"
+
+#~ msgid "Mandatory Input: No Data given!"
+#~ msgstr "Обов'язкове введення: дані не надано!"
+
+#~ msgid "Mandatory Input: No Directory given!"
+#~ msgstr "Обов'язкове введення: каталог не надано!"
+
+#~ msgid "Mandatory Input: No Port given!"
+#~ msgstr "Обов’язкове введення: порт не вказано!"
+
+#~ msgid "Mandatory Input: No files given!"
+#~ msgstr "Обов'язкове введення: файли не надано!"
+
+#~ msgid "Mandatory Input: No valid IPv4 address or host given!"
+#~ msgstr "Обов’язкове введення: не вказано дійсну адресу IPv4 або хост!"
+
+#~ msgid "Mandatory Input: No valid IPv6 address given!"
+#~ msgstr "Обов’язкове введення: не вказано дійсну адресу IPv6!"
+
+#~ msgid "Mandatory Input: No valid Port given!"
+#~ msgstr "Обов’язкове введення: дійсний порт не вказано!"
+
+#~ msgid "Miscellaneous"
+#~ msgstr "Різне"
+
+#~ msgid "NOT installed"
+#~ msgstr "Не інстальовано"
+
+#~ msgid "No trailing '/', please."
+#~ msgstr "Без кінцевих '/', будь ласка."
+
+#~ msgid ""
+#~ "Only when using 'external filters', Privoxy has to create temporary files."
+#~ msgstr ""
+#~ "Лише при використанні «зовнішніх фільтрів» Privoxy має створювати "
+#~ "тимчасові файли."
+
+#~ msgid "Please install current version !"
+#~ msgstr "Будь ласка, встановіть поточну версію!"
+
+#~ msgid "Please press [Read] button"
+#~ msgstr "Натисніть кнопку [Читати]"
+
+#~ msgid "Please update to the current version!"
+#~ msgstr "Будь ласка, оновіть до поточної версії!"
+
+#~ msgid ""
+#~ "Privoxy is a non-caching web proxy with advanced filtering capabilities "
+#~ "for enhancing privacy, modifying web page data and HTTP headers, "
+#~ "controlling access, and removing ads and other obnoxious Internet junk."
+#~ msgstr ""
+#~ "Privoxy — це веб-проксі без кешування з розширеними можливостями "
+#~ "фільтрації для підвищення конфіденційності, зміни даних веб-сторінок і "
+#~ "заголовків HTTP, контролю доступу та видалення реклами та іншого "
+#~ "неприємного інтернет-сміття."
+
+#~ msgid "Read / Reread log file"
+#~ msgstr "Прочитати/перечитати файл журналу"
+
+#~ msgid "Software package '%s' is not installed."
+#~ msgstr "Пакунок програм '%s' не встановлено."
+
+#~ msgid "Software package '%s' is outdated."
+#~ msgstr "Пакунок програм '%s' застарів."
+
+#~ msgid "Start"
+#~ msgstr "Запустити"
+
+#~ msgid "Start / Stop"
+#~ msgstr "Пуск/Стоп"
+
+#~ msgid "Start/Stop Privoxy WEB Proxy"
+#~ msgstr "Запуск/зупинка Privoxy WEB Proxy"
+
+#~ msgid ""
+#~ "The directory where all logging takes place (i.e. where the logfile is "
+#~ "located)."
+#~ msgstr ""
+#~ "Каталог, де ведеться журналювання (тобто, де знаходиться файл журналу)."
+
+#~ msgid ""
+#~ "The value of this option only matters if the experimental trust mechanism "
+#~ "has been activated."
+#~ msgstr ""
+#~ "Значення цього параметра має значення, лише якщо активовано "
+#~ "експериментальний механізм довіри."
+
+#~ msgid "Value is not a number"
+#~ msgstr "Значення не є числом"
+
+#~ msgid "Value not between 0 and 300"
+#~ msgstr "Значення не між 0 і 300"
+
+#~ msgid "Value not between 0 and 9"
+#~ msgstr "Значення не між 0 і 9"
+
+#~ msgid "Value not between 1 and 4096"
+#~ msgstr "Значення не між 1 і 4096"
+
+#~ msgid "Value not greater 0 or empty"
+#~ msgstr "Значення не більше 0 або пусте"
+
+#~ msgid "Version"
+#~ msgstr "Версія"
+
+#~ msgid "Version Information"
+#~ msgstr "Інформація про версію"
+
+#~ msgid "installed"
+#~ msgstr "встановлено"
+
+#~ msgid "or higher"
+#~ msgstr "чи вище"
+
+#~ msgid "required"
+#~ msgstr "вимагається"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.18.1\n"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
+"A directory where Privoxy can create temporary files.<br /><strong>Only when "
+"using 'external filters', Privoxy has to create temporary files.</strong>"
msgstr ""
-"Một URL sẽ được hiển thị trong trang lỗi mà người dùng sẽ thấy nếu quyền "
-"truy cập vào một trang không đáng tin cậy bị từ chối."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
+msgid "Accept intercepted requests"
msgstr ""
-"Một URL tới tài liệu về thiết lập, cấu hình hoặc chính sách Privoxy cục bộ."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr "Một thư mục nơi Privoxy có thể tạo các tệp tạm thời."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "Access Control"
msgstr "Kiểm soát truy cập"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
+msgid "Action Files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
"Các hành động được áp dụng cho tất cả các trang web và có thể bị bãi bỏ sau "
"này."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr "Một thư mục thay thế nơi các mẫu được tải từ."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
+msgid "Admin Email"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr "Một địa chỉ email để liên hệ với quản trị viên Privoxy."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
+msgid "Allow CGI request crunching"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
+msgid ""
+"An alternative directory where the templates are loaded from.<br />No "
+"trailing \"/\", please."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
"Giả định thời gian chờ giữ kết nối phía máy chủ (tính bằng giây) nếu không "
"được máy chủ chỉ định."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay"
msgstr "Độ trễ khởi động"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
+msgid "Buffer Limit"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface"
msgstr "Giao diện người dùng CGI"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
+msgid "Client header order"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format"
msgstr "Định dạng nhật ký chung"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
+msgid "Compression level"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
+msgid "Configuration Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
+msgid "Configure the Privoxy proxy daemon settings."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
+msgid "Connection sharing"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
+msgid "Debug"
msgstr ""
-"Cấu hình tại đây việc định tuyến các yêu cầu HTTP qua một chuỗi nhiều proxy. "
-"Lưu ý rằng các proxy cha có thể làm giảm mức độ riêng tư của bạn nghiêm "
-"trọng. Cũng được chỉ định tại đây là các proxy SOCKS."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
+msgid "Debug 1"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
+msgid "Debug 1024"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
+msgid "Debug 128"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
+msgid "Debug 16"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
+msgid "Debug 2"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
+msgid "Debug 2048"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
+msgid "Debug 256"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
+msgid "Debug 32"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
+msgid "Debug 32768"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
+msgid "Debug 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
+msgid "Debug 4096"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
+msgid "Debug 512"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
+msgid "Debug 64"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
+msgid "Debug 65536"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
+msgid "Debug 8"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
+msgid "Debug 8192"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation"
msgstr "Gỡ lỗi GIF hủy hoạt hình"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature"
msgstr "Tính năng gỡ lỗi buộc"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects"
msgstr "Gỡ lỗi chuyển hướng"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters"
msgstr "Gỡ lỗi bộ lọc biểu thức chính quy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
+msgid "Default server timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
+msgid "Delay (in seconds) during system boot before Privoxy starts."
msgstr ""
-"Độ trễ (tính bằng giây) trong quá trình khởi động hệ thống trước khi Privoxy "
-"bắt đầu"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr "Thư mục không tồn tại!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
+msgid "Deny access"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode"
msgstr "Vô hiệu hóa == Chế độ Proxy Trong suốt"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "Documentation"
msgstr "Tài liệu"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr "Trong thời gian chờ, các sự kiện ifup không được giám sát !"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
+msgid "Email address for the Privoxy administrator."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
+msgid "Enable action file editor"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
+msgid "Enable compression"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding"
msgstr "Bật chuyển tiếp xác thực proxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
+msgid "Enable remote toggle"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
+msgid "Enable remote toggle via HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
+msgid "Enable/Disable autostart of Privoxy"
msgstr ""
-"Bật/Tắt khởi động tự động của Privoxy khi hệ thống khởi động và các sự kiện "
-"giao diện"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts."
msgstr "Bật/Tắt lọc khi Privoxy bắt đầu."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled"
msgstr "Kích Hoạt"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
msgstr ""
"Không nên bật tùy chọn này nếu không có proxy cha nào yêu cầu xác thực!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr "Không tìm thấy tệp '%s' trong Thư mục Cấu hình"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr "Không tìm thấy tệp hoặc tệp trống"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
+msgid "Enforce page blocking"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid "Files and Directories"
msgstr "Các tệp và thư mục"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr "Để được trợ giúp, hãy sử dụng liên kết tại tùy chọn liên quan"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
+msgid "Filter files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
+msgid "Forward HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
+msgid "Forward SOCKS 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
+msgid "Forward SOCKS 4A"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
+msgid "Forward SOCKS 5"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
+msgid "Forward SOCKS 5t"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding"
msgstr "Chuyển tiếp"
msgid "Grant UCI access for luci-app-privoxy"
msgstr "Cấp quyền truy cập UCI cho luci-app-privoxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
+msgid "Handle as empty doc returns ok"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+"If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
-"Nếu bật, Privoxy sẽ ẩn liên kết 'đi đến đó dù sao'. Người dùng rõ ràng không "
-"nên có thể bỏ qua bất kỳ khối nào."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"có thể là một ý tưởng tốt để cho họ biết cách liên lạc với bạn, những gì bạn "
"chặn và tại sao bạn làm như vậy, chính sách của bạn, v.v."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr "Địa chỉ email không hợp lệ"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
msgid "It is NOT recommended for the casual user."
msgstr "Không khuyến khích cho người dùng thông thường."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
+msgid "Keep-alive timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
+msgid "Listen addresses"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual."
msgstr "Vị trí của Sổ tay Người dùng Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr "Trình xem Tệp Nhật ký"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
+msgid "Log Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
+msgid "Log File"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network"
msgstr "Ghi nhật ký tất cả dữ liệu đọc từ mạng"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network"
msgstr "Ghi nhật ký tất cả dữ liệu ghi vào mạng"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions"
msgstr "Ghi nhật ký các hành động áp dụng"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
msgstr ""
"Ghi nhật ký điểm đến cho mỗi yêu cầu Privoxy cho qua. Xem thêm 'Debug 1024'."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
msgstr ""
"Ghi nhật ký điểm đến cho các yêu cầu Privoxy không cho qua và lý do tại sao."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr "Ghi nhật ký"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Main actions file"
msgstr "Tệp hành động chính"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr "Đầu vào Bắt buộc: Không có Dữ liệu nào được cung cấp!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr "Đầu vào Bắt buộc: Không có Thư mục nào được cung cấp!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No File given!"
msgstr "Đầu vào Bắt buộc: Không có Tệp nào được cung cấp!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr "Đầu vào Bắt buộc: Không có Cổng nào được cung cấp!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr "Đầu vào Bắt buộc: Không có tệp nào được cung cấp!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
+msgid "Max. client connections"
msgstr ""
-"Đầu vào Bắt buộc: Không có địa chỉ IPv4 hoặc máy chủ hợp lệ nào được cung "
-"cấp!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr "Đầu vào Bắt buộc: Không có địa chỉ IPv6 hợp lệ nào được cung cấp!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr "Đầu vào Bắt buộc: Không có Cổng hợp lệ nào được cung cấp!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
msgid "Maximum number of client connections that will be served."
msgstr "Số lượng kết nối khách hàng tối đa sẽ được phục vụ."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr "Kích thước tối đa (theo KB) của bộ đệm cho lọc nội dung."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr "Linh tinh"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr "CHƯA được cài đặt"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr "Không có dấu '/' ở cuối, xin vui lòng."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
+msgid "Misc"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr "Gây lỗi nhỏ - *chúng tôi khuyến khích bạn bật tính năng này*"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
"Số giây sau đó một socket bị hết thời gian nếu không nhận được dữ liệu."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr "Số giây sau đó một kết nối mở sẽ không được sử dụng lại."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
-msgstr "Chỉ khi sử dụng 'bộ lọc bên ngoài', Privoxy phải tạo các tệp tạm thời."
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr "Vui lòng cài đặt phiên bản hiện tại !"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr "Vui lòng nhấn nút [Đọc]"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
+msgid "Permit access"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Please read Privoxy manual for details!"
msgstr "Vui lòng đọc sổ tay Privoxy để biết chi tiết!"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr "Vui lòng cập nhật lên phiên bản hiện tại!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
+msgid "Privoxy"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
+msgid "Privoxy Settings"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
+#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy"
msgstr "Proxy WEB Privoxy"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"giúp và ghi nhật ký. Phần này của tệp cấu hình cho Privoxy biết nơi tìm thấy "
"các tệp khác đó."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
+msgid "Proxy Info URL"
msgstr ""
-"Privoxy là một proxy web không lưu đệm với khả năng lọc nâng cao để tăng "
-"cường quyền riêng tư, sửa đổi dữ liệu trang web và tiêu đề HTTP, kiểm soát "
-"truy cập và loại bỏ quảng cáo và các rác rưởi Internet khó chịu khác."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr "Đọc / Đọc lại tệp nhật ký"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Show I/O status"
msgstr "Hiển thị trạng thái I/O"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status"
msgstr "Hiển thị trạng thái của từng kết nối"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing"
msgstr "Hiển thị phân tích tiêu đề"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr "Gói phần mềm '%s' chưa được cài đặt."
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr "Gói phần mềm '%s' đã lỗi thời."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "Bắt đầu"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
+msgid "Single Threaded"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr "Bắt đầu / Dừng"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
+msgid "Socket timeout"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr "Bắt đầu/Dừng Proxy WEB Privoxy"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
+msgid "Split large forms"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Startup banner and warnings."
msgstr "Biểu ngữ khởi động và cảnh báo."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
msgid "Syntax:"
msgstr "Cú pháp:"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces."
msgstr "Cú pháp: Tên tiêu đề khách hàng được phân cách bằng dấu cách."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
+msgid ""
+"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]"
msgstr "Cú pháp: mẫu_đích http_cha[:cổng]"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
+msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System"
msgstr "Hệ thống"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
+msgid "Template Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
+msgid "Temporary Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
"Tệp hành động để sử dụng. Nhiều dòng actionsfile được cho phép và thực sự "
"được khuyến khích!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
"Địa chỉ và cổng TCP mà Privoxy sẽ lắng nghe các yêu cầu của khách hàng."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
msgstr "Mức nén được truyền đến thư viện zlib khi nén nội dung đệm."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
+"located).<br />No trailing \"/\", please."
msgstr ""
-"Thư mục nơi tất cả các hoạt động ghi nhật ký diễn ra (tức là nơi tệp nhật ký "
-"được đặt)."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located."
msgstr "Thư mục nơi các tệp cấu hình khác được đặt."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
msgstr ""
"Các tệp bộ lọc chứa các quy tắc sửa đổi nội dung sử dụng biểu thức chính quy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages."
msgstr "Tên máy chủ được hiển thị trên các trang CGI."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory."
msgstr "Tệp nhật ký để sử dụng. Tên tệp, tương đối với thư mục nhật ký."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
"Thứ tự mà các tiêu đề khách hàng được sắp xếp trước khi chuyển tiếp chúng."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
"Mã trạng thái Privoxy trả về cho các trang bị chặn với +handle-as-empty-"
"document."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
"Cơ chế tin cậy là một tính năng thử nghiệm để xây dựng danh sách trắng và "
"nên được sử dụng cẩn thận."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr ""
-"Giá trị của tùy chọn này chỉ quan trọng nếu cơ chế tin cậy thử nghiệm đã "
-"được kích hoạt."
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
"Tùy chọn này chỉ có cho mục đích gỡ lỗi. Nó sẽ làm giảm hiệu suất một cách "
"đáng kể."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
"Tùy chọn này sẽ bị xóa trong các phiên bản tương lai vì nó đã bị lỗi thời "
"bởi các trình gắn thẻ tiêu đề tổng quát hơn."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
"Tab này điều khiển các khía cạnh liên quan đến bảo mật của cấu hình Privoxy."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
"Qua proxy SOCKS nào (và tùy chọn đến proxy HTTP cha nào) các yêu cầu cụ thể "
"nên được định tuyến."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr "Đến proxy HTTP cha nào các yêu cầu cụ thể nên được định tuyến."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
+msgid "Toggle Status"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
+msgid "Tolerate pipelining"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
+msgid "Trust Info URL"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
+msgid "Trust file"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
+msgid ""
+"URL shown if access to an untrusted page is denied. Only applies if trust "
+"mechanism is enabled."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
+msgid "URL to documentation about the local Privoxy setup."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
+msgid "User Manual"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
msgid "User customizations"
msgstr "Tùy chỉnh của người dùng"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr "Giá trị không phải là một số"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr "Giá trị không nằm trong khoảng từ 0 đến 300"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr "Giá trị không nằm trong khoảng từ 0 đến 9"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr "Giá trị không nằm trong khoảng từ 1 đến 4096"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr "Giá trị không lớn hơn 0 hoặc rỗng"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr "Phạm vi giá trị từ 1 đến 4096, không có mục nhập mặc định là 4096"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "Phiên bản"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr "Thông tin phiên bản"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
msgid "Whether intercepted requests should be treated as valid."
msgstr "Có phải các yêu cầu bị chặn nên được coi là hợp lệ hay không."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
"Privoxy có nhận ra các tiêu đề HTTP đặc biệt để thay đổi trạng thái chuyển "
"đổi hay không."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery."
msgstr "Có phải nội dung đệm được nén trước khi giao hay không."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
"Có phải các kết nối đi ra đã được giữ sống nên được chia sẻ giữa các kết nối "
"đến khác nhau hay không."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served."
msgstr "Có phải các yêu cầu được xếp hàng nên được phục vụ hay không."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr "Có phải xác thực proxy thông qua Privoxy nên hoạt động hay không."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used."
msgstr ""
"Có phải trình biên tập tệp hành động dựa trên web có thể được sử dụng hay "
"không."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used."
msgstr ""
"Có phải tính năng chuyển đổi dựa trên web có thể được sử dụng hay không."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
"Có phải các yêu cầu đến các trang CGI của Privoxy có thể bị chặn hoặc chuyển "
"hướng hay không."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
"Dù giao diện CGI nên duy trì khả năng tương thích với các khách hàng HTTP bị "
"lỗi."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread."
msgstr "Dù chạy chỉ một luồng máy chủ hay không."
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what."
msgstr "Ai có thể truy cập điều gì."
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr "đã cài đặt"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr "hoặc cao hơn"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr "bắt buộc"
+#~ msgid ""
+#~ "A URL to be displayed in the error page that users will see if access to "
+#~ "an untrusted page is denied."
+#~ msgstr ""
+#~ "Một URL sẽ được hiển thị trong trang lỗi mà người dùng sẽ thấy nếu quyền "
+#~ "truy cập vào một trang không đáng tin cậy bị từ chối."
+
+#~ msgid ""
+#~ "A URL to documentation about the local Privoxy setup, configuration or "
+#~ "policies."
+#~ msgstr ""
+#~ "Một URL tới tài liệu về thiết lập, cấu hình hoặc chính sách Privoxy cục "
+#~ "bộ."
+
+#~ msgid "A directory where Privoxy can create temporary files."
+#~ msgstr "Một thư mục nơi Privoxy có thể tạo các tệp tạm thời."
+
+#~ msgid "An alternative directory where the templates are loaded from."
+#~ msgstr "Một thư mục thay thế nơi các mẫu được tải từ."
+
+#~ msgid "An email address to reach the Privoxy administrator."
+#~ msgstr "Một địa chỉ email để liên hệ với quản trị viên Privoxy."
+
+#~ msgid ""
+#~ "Configure here the routing of HTTP requests through a chain of multiple "
+#~ "proxies. Note that parent proxies can severely decrease your privacy "
+#~ "level. Also specified here are SOCKS proxies."
+#~ msgstr ""
+#~ "Cấu hình tại đây việc định tuyến các yêu cầu HTTP qua một chuỗi nhiều "
+#~ "proxy. Lưu ý rằng các proxy cha có thể làm giảm mức độ riêng tư của bạn "
+#~ "nghiêm trọng. Cũng được chỉ định tại đây là các proxy SOCKS."
+
+#~ msgid "Delay (in seconds) during system boot before Privoxy start"
+#~ msgstr ""
+#~ "Độ trễ (tính bằng giây) trong quá trình khởi động hệ thống trước khi "
+#~ "Privoxy bắt đầu"
+
+#~ msgid "Directory does not exist!"
+#~ msgstr "Thư mục không tồn tại!"
+
+#~ msgid "During delay ifup-events are not monitored !"
+#~ msgstr "Trong thời gian chờ, các sự kiện ifup không được giám sát !"
+
+#~ msgid ""
+#~ "Enable/Disable autostart of Privoxy on system startup and interface events"
+#~ msgstr ""
+#~ "Bật/Tắt khởi động tự động của Privoxy khi hệ thống khởi động và các sự "
+#~ "kiện giao diện"
+
+#~ msgid "File '%s' not found inside Configuration Directory"
+#~ msgstr "Không tìm thấy tệp '%s' trong Thư mục Cấu hình"
+
+#~ msgid "File not found or empty"
+#~ msgstr "Không tìm thấy tệp hoặc tệp trống"
+
+#~ msgid "For help use link at the relevant option"
+#~ msgstr "Để được trợ giúp, hãy sử dụng liên kết tại tùy chọn liên quan"
+
+#~ msgid ""
+#~ "If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+#~ "should not be able to bypass any blocks."
+#~ msgstr ""
+#~ "Nếu bật, Privoxy sẽ ẩn liên kết 'đi đến đó dù sao'. Người dùng rõ ràng "
+#~ "không nên có thể bỏ qua bất kỳ khối nào."
+
+#~ msgid "Invalid email address"
+#~ msgstr "Địa chỉ email không hợp lệ"
+
+#~ msgid "Log File Viewer"
+#~ msgstr "Trình xem Tệp Nhật ký"
+
+#~ msgid "Logging"
+#~ msgstr "Ghi nhật ký"
+
+#~ msgid "Mandatory Input: No Data given!"
+#~ msgstr "Đầu vào Bắt buộc: Không có Dữ liệu nào được cung cấp!"
+
+#~ msgid "Mandatory Input: No Directory given!"
+#~ msgstr "Đầu vào Bắt buộc: Không có Thư mục nào được cung cấp!"
+
+#~ msgid "Mandatory Input: No Port given!"
+#~ msgstr "Đầu vào Bắt buộc: Không có Cổng nào được cung cấp!"
+
+#~ msgid "Mandatory Input: No files given!"
+#~ msgstr "Đầu vào Bắt buộc: Không có tệp nào được cung cấp!"
+
+#~ msgid "Mandatory Input: No valid IPv4 address or host given!"
+#~ msgstr ""
+#~ "Đầu vào Bắt buộc: Không có địa chỉ IPv4 hoặc máy chủ hợp lệ nào được cung "
+#~ "cấp!"
+
+#~ msgid "Mandatory Input: No valid IPv6 address given!"
+#~ msgstr "Đầu vào Bắt buộc: Không có địa chỉ IPv6 hợp lệ nào được cung cấp!"
+
+#~ msgid "Mandatory Input: No valid Port given!"
+#~ msgstr "Đầu vào Bắt buộc: Không có Cổng hợp lệ nào được cung cấp!"
+
+#~ msgid "Miscellaneous"
+#~ msgstr "Linh tinh"
+
+#~ msgid "NOT installed"
+#~ msgstr "CHƯA được cài đặt"
+
+#~ msgid "No trailing '/', please."
+#~ msgstr "Không có dấu '/' ở cuối, xin vui lòng."
+
+#~ msgid ""
+#~ "Only when using 'external filters', Privoxy has to create temporary files."
+#~ msgstr ""
+#~ "Chỉ khi sử dụng 'bộ lọc bên ngoài', Privoxy phải tạo các tệp tạm thời."
+
+#~ msgid "Please install current version !"
+#~ msgstr "Vui lòng cài đặt phiên bản hiện tại !"
+
+#~ msgid "Please press [Read] button"
+#~ msgstr "Vui lòng nhấn nút [Đọc]"
+
+#~ msgid "Please update to the current version!"
+#~ msgstr "Vui lòng cập nhật lên phiên bản hiện tại!"
+
+#~ msgid ""
+#~ "Privoxy is a non-caching web proxy with advanced filtering capabilities "
+#~ "for enhancing privacy, modifying web page data and HTTP headers, "
+#~ "controlling access, and removing ads and other obnoxious Internet junk."
+#~ msgstr ""
+#~ "Privoxy là một proxy web không lưu đệm với khả năng lọc nâng cao để tăng "
+#~ "cường quyền riêng tư, sửa đổi dữ liệu trang web và tiêu đề HTTP, kiểm "
+#~ "soát truy cập và loại bỏ quảng cáo và các rác rưởi Internet khó chịu khác."
+
+#~ msgid "Read / Reread log file"
+#~ msgstr "Đọc / Đọc lại tệp nhật ký"
+
+#~ msgid "Software package '%s' is not installed."
+#~ msgstr "Gói phần mềm '%s' chưa được cài đặt."
+
+#~ msgid "Software package '%s' is outdated."
+#~ msgstr "Gói phần mềm '%s' đã lỗi thời."
+
+#~ msgid "Start"
+#~ msgstr "Bắt đầu"
+
+#~ msgid "Start / Stop"
+#~ msgstr "Bắt đầu / Dừng"
+
+#~ msgid "Start/Stop Privoxy WEB Proxy"
+#~ msgstr "Bắt đầu/Dừng Proxy WEB Privoxy"
+
+#~ msgid ""
+#~ "The directory where all logging takes place (i.e. where the logfile is "
+#~ "located)."
+#~ msgstr ""
+#~ "Thư mục nơi tất cả các hoạt động ghi nhật ký diễn ra (tức là nơi tệp nhật "
+#~ "ký được đặt)."
+
+#~ msgid ""
+#~ "The value of this option only matters if the experimental trust mechanism "
+#~ "has been activated."
+#~ msgstr ""
+#~ "Giá trị của tùy chọn này chỉ quan trọng nếu cơ chế tin cậy thử nghiệm đã "
+#~ "được kích hoạt."
+
+#~ msgid "Value is not a number"
+#~ msgstr "Giá trị không phải là một số"
+
+#~ msgid "Value not between 0 and 300"
+#~ msgstr "Giá trị không nằm trong khoảng từ 0 đến 300"
+
+#~ msgid "Value not between 0 and 9"
+#~ msgstr "Giá trị không nằm trong khoảng từ 0 đến 9"
+
+#~ msgid "Value not between 1 and 4096"
+#~ msgstr "Giá trị không nằm trong khoảng từ 1 đến 4096"
+
+#~ msgid "Value not greater 0 or empty"
+#~ msgstr "Giá trị không lớn hơn 0 hoặc rỗng"
+
+#~ msgid "Version"
+#~ msgstr "Phiên bản"
+
+#~ msgid "Version Information"
+#~ msgstr "Thông tin phiên bản"
+
+#~ msgid "installed"
+#~ msgstr "đã cài đặt"
+
+#~ msgid "or higher"
+#~ msgstr "hoặc cao hơn"
+
+#~ msgid "required"
+#~ msgstr "bắt buộc"
"X-Generator: Weblate 5.4-dev\n"
"X-Poedit-SourceCharset: UTF-8\n"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
-msgstr "当用户试图访问不受信任的页面时,错误页面所显示的 URL。"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
-msgstr "指向 Privoxy 安装、设置和规则说明文档的 URL。"
+"A directory where Privoxy can create temporary files.<br /><strong>Only when "
+"using 'external filters', Privoxy has to create temporary files.</strong>"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr "Privoxy 存放临时文件的目录。"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
+msgid "Accept intercepted requests"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "Access Control"
msgstr "访问控制"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
+msgid "Action Files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr "作用在所有站点上的规则,可能被后面的规则覆盖。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr "可选的目录,放在里面的模板会被加载。"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
+msgid "Admin Email"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr "用于联系 Privoxy 管理员的邮箱地址。"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
+msgid "Allow CGI request crunching"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
+msgid ""
+"An alternative directory where the templates are loaded from.<br />No "
+"trailing \"/\", please."
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
msgstr "当服务端没有指定超时时间时假定的超时时间(单位:秒)。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay"
msgstr "启动延时"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
+msgid "Buffer Limit"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface"
msgstr "CGI 用户界面"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
+msgid "Client header order"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format"
msgstr "通用日志格式"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
+msgid "Compression level"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
+msgid "Configuration Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
+msgid "Configure the Privoxy proxy daemon settings."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
+msgid "Connection sharing"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
+msgid "Debug 1"
msgstr ""
-"在这里设置 HTTP 请求所经过的多重代理链。注意:父级代理可能严重降低您的隐私安"
-"全度。在这里还可以设置 SOCKS 代理。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
+msgid "Debug 1024"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
+msgid "Debug 128"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
+msgid "Debug 16"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
+msgid "Debug 2"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
+msgid "Debug 2048"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
+msgid "Debug 256"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
+msgid "Debug 32"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
+msgid "Debug 32768"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
+msgid "Debug 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
+msgid "Debug 4096"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
+msgid "Debug 512"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
+msgid "Debug 64"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
+msgid "Debug 65536"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
+msgid "Debug 8"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
+msgid "Debug 8192"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation"
msgstr "调试 GIF 动画"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature"
msgstr "调试 Force feature"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects"
msgstr "调试重定向"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters"
msgstr "调试正则表达式"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
-msgstr "Privoxy 自启动延迟时间(单位:秒)"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
+msgid "Default server timeout"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr "目录不存在!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
+msgid "Delay (in seconds) during system boot before Privoxy starts."
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
+msgid "Deny access"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode"
msgstr "禁用 == 透明代理模式"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "Documentation"
msgstr "记录信息"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr "在延迟期间无法监测 ifup 事件!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
+msgid "Email address for the Privoxy administrator."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
+msgid "Enable action file editor"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
+msgid "Enable compression"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding"
msgstr "允许转发代理认证"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
-msgstr "启用/禁用 Privoxy 在系统启动或接口事件时自动启动"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
+msgid "Enable remote toggle"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
+msgid "Enable remote toggle via HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
+msgid "Enable/Disable autostart of Privoxy"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts."
msgstr "Privoxy 启动时启用/禁用过滤。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled"
msgstr "已启用"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
msgstr "如果没有需要认证的父级代理时,不推荐开启这个选项!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr "在设置目录中未找到文件“%s”"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr "文件不存在或为空"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
+msgid "Enforce page blocking"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid "Files and Directories"
msgstr "文件和目录"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr "点击相应选项的连接可获取帮助"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
+msgid "Filter files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
+msgid "Forward HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
+msgid "Forward SOCKS 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
+msgid "Forward SOCKS 4A"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
+msgid "Forward SOCKS 5"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
+msgid "Forward SOCKS 5t"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding"
msgstr "转发"
msgid "Grant UCI access for luci-app-privoxy"
msgstr "授予UCI访问luci-app-privoxy的权限"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
+msgid "Handle as empty doc returns ok"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+"If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks."
-msgstr "如果启用,Privoxy 会隐藏“go there anyway”链接,用户就不能绕过屏蔽。"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"如果除了您还有其他用户使用 Privoxy 连接,最好让他们知道如何联系您,您屏蔽什"
"么,您为什么这样做,您的政策等等。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr "邮箱地址无效"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
msgid "It is NOT recommended for the casual user."
msgstr "不推荐新手使用。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
+msgid "Keep-alive timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
+msgid "Listen addresses"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual."
msgstr "Privoxy 用户手册位置。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr "日志查看器"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
+msgid "Log Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
+msgid "Log File"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network"
msgstr "记录所有接收的网络数据"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network"
msgstr "记录所有发送的网络数据"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions"
msgstr "记录配置保存动作"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
msgstr "记录 Privoxy 允许的所有请求。另请参考“Debug 1024”。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
msgstr "记录 Privoxy 拒绝的请求目标以及拒绝原因。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr "日志"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Main actions file"
msgstr "主要规则文件"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr "必需选项:没有设置数据!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr "必需选项:没有设置目录!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No File given!"
msgstr "必需选项:没有设置文件!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr "必需选项:没有设置端口!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr "必需选项:没有设置文件!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
-msgstr "必需选项:没有设置有效的 IPv4 地址或者主机!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr "必需选项:没有设置有效的 IPv6 地址!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr "必需选项:没有设置有效的端口!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
+msgid "Max. client connections"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
msgid "Maximum number of client connections that will be served."
msgstr "客户端数量上限。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr "内容过滤的最大缓冲(单位:KB)。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr "杂项"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr "未安装"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr "路径结尾不要加“/”。"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
+msgid "Misc"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr "非致命性错误 - *强烈建议启用*"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr "Socket 连接未收到数据的超时时间。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr "开放的连接不再重复使用的超时时间。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
-msgstr "只有使用外置规则时,Privoxy 才需要创建临时文件。"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr "请安装当前版本!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr "请按下 [读取] 按钮"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
+msgid "Permit access"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Please read Privoxy manual for details!"
msgstr "请阅读 Privoxy 手册以了解详情!"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr "请升级到当前版本!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
+msgid "Privoxy"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
+msgid "Privoxy Settings"
+msgstr ""
+
+#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy"
msgstr "Privoxy 网络代理"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"Privoxy 可以(而且一般都会)使用其他一些文件用于附加设置,帮助和日志。这个区"
"域用来告诉 Privoxy 从哪里找到这些文件。"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
+msgid "Proxy Info URL"
msgstr ""
-"Privoxy 是一个无缓存的网络代理,具有高级过滤功能,能够修改网页数据和 HTTP 请"
-"求头、控制访问、移除广告等。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr "读取/重新读取 日志文件"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Show I/O status"
msgstr "显示 I/O 状态"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status"
msgstr "显示每个连接的状态"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing"
msgstr "显示请求头 解析"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr "软件包 '%s' 未安装。"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr "软件包“%s”已过时。"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "启动"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
+msgid "Single Threaded"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr "启动 / 停止"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
+msgid "Socket timeout"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr "启动/停止 Privoxy 网络代理"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
+msgid "Split large forms"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Startup banner and warnings."
msgstr "启动标语和警告。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
msgid "Syntax:"
msgstr "语法:"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces."
msgstr "格式:由空格分隔的客户端请求头名称。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
+msgid ""
+"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]"
msgstr "格式:target_pattern http_parent[:port]"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
+msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System"
msgstr "系统"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
+msgid "Template Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
+msgid "Temporary Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
msgstr "要使用的规则文件。允许并且推荐使用多个规则文件!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr "Privoxy 接收客户端请求时监听的地址和 TCP 端口。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
msgstr "使用 zlib 压缩缓冲内容时的压缩级别。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
-msgstr "所有日志所在的目录。"
+"located).<br />No trailing \"/\", please."
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located."
msgstr "其他设置文件所在的目录。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
msgstr "过滤文件包含了使用正则表达式编写的内容修改规则。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages."
msgstr "CGI 页面显示的主机名。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory."
msgstr "日志文件名称,与日志路径相对。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them."
msgstr "转发数据前,客户端请求头的排序。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
msgstr "Privoxy 对于被+handle-as-empty-document 拦截的页面返回的状态码。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
msgstr "信任机制是一个实验性的白名单特性,使用时应小心。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr "只有开启了信任机制时这个选项的值才有效。"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
msgstr "这个选项仅用于调试,开启后会极大地降低性能。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
msgstr "这个选项在以后的版本中将被移除,因为它被 header taggers 所取代了。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr "这个标签用于设置与安全相关的 Privoxy 选项。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
msgstr ""
"指定的请求应该通过哪一个 SOCKS 代理(并且通过哪一个 HTTP 父代理,可选)。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr "请求应转发至哪一个父级 HTTP 代理。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
+msgid "Toggle Status"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
+msgid "Tolerate pipelining"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
+msgid "Trust Info URL"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
+msgid "Trust file"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
+msgid ""
+"URL shown if access to an untrusted page is denied. Only applies if trust "
+"mechanism is enabled."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
+msgid "URL to documentation about the local Privoxy setup."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
+msgid "User Manual"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
msgid "User customizations"
msgstr "用户自定义"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr "输入值不是一个数字"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr "输入值不在 0 和 300 之间"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr "输入值不在 0 和 9 之间"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr "输入值不在 1 和 4096 之间"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr "输入值为空或者不是大于零"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr "输入值为 1 到 4096,默认为 4096"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "版本"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr "版本信息"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
msgid "Whether intercepted requests should be treated as valid."
msgstr "是否应把被拦截的请求当作是有效的。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
msgstr "是否让 Privoxy 识别特殊的 HTTP 请求头以切换状态。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery."
msgstr "是否在传递之前压缩缓冲内容。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
msgstr "是否应在不同的入站连接之间共享持久出站连接。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served."
msgstr "是否处理管道化的请求。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr "是否可以通过 Privoxy 进行代理验证。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used."
msgstr "是否使用基于网页的规则编辑器。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used."
msgstr "是否启用基于网页的切换功能。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr "是否可以被拦截或重定向访问 Privoxy CGI 页面的请求。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr "是否让 CGI 界面兼容过时的 HTTP 客户端。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread."
msgstr "是否只运行一个服务线程。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what."
msgstr "谁可以访问什么。"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr "已安装"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr "或更高"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr "需要"
+#~ msgid ""
+#~ "A URL to be displayed in the error page that users will see if access to "
+#~ "an untrusted page is denied."
+#~ msgstr "当用户试图访问不受信任的页面时,错误页面所显示的 URL。"
+
+#~ msgid ""
+#~ "A URL to documentation about the local Privoxy setup, configuration or "
+#~ "policies."
+#~ msgstr "指向 Privoxy 安装、设置和规则说明文档的 URL。"
+
+#~ msgid "A directory where Privoxy can create temporary files."
+#~ msgstr "Privoxy 存放临时文件的目录。"
+
+#~ msgid "An alternative directory where the templates are loaded from."
+#~ msgstr "可选的目录,放在里面的模板会被加载。"
+
+#~ msgid "An email address to reach the Privoxy administrator."
+#~ msgstr "用于联系 Privoxy 管理员的邮箱地址。"
+
+#~ msgid ""
+#~ "Configure here the routing of HTTP requests through a chain of multiple "
+#~ "proxies. Note that parent proxies can severely decrease your privacy "
+#~ "level. Also specified here are SOCKS proxies."
+#~ msgstr ""
+#~ "在这里设置 HTTP 请求所经过的多重代理链。注意:父级代理可能严重降低您的隐私"
+#~ "安全度。在这里还可以设置 SOCKS 代理。"
+
+#~ msgid "Delay (in seconds) during system boot before Privoxy start"
+#~ msgstr "Privoxy 自启动延迟时间(单位:秒)"
+
+#~ msgid "Directory does not exist!"
+#~ msgstr "目录不存在!"
+
+#~ msgid "During delay ifup-events are not monitored !"
+#~ msgstr "在延迟期间无法监测 ifup 事件!"
+
+#~ msgid ""
+#~ "Enable/Disable autostart of Privoxy on system startup and interface events"
+#~ msgstr "启用/禁用 Privoxy 在系统启动或接口事件时自动启动"
+
+#~ msgid "File '%s' not found inside Configuration Directory"
+#~ msgstr "在设置目录中未找到文件“%s”"
+
+#~ msgid "File not found or empty"
+#~ msgstr "文件不存在或为空"
+
+#~ msgid "For help use link at the relevant option"
+#~ msgstr "点击相应选项的连接可获取帮助"
+
+#~ msgid ""
+#~ "If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+#~ "should not be able to bypass any blocks."
+#~ msgstr "如果启用,Privoxy 会隐藏“go there anyway”链接,用户就不能绕过屏蔽。"
+
+#~ msgid "Invalid email address"
+#~ msgstr "邮箱地址无效"
+
+#~ msgid "Log File Viewer"
+#~ msgstr "日志查看器"
+
+#~ msgid "Logging"
+#~ msgstr "日志"
+
+#~ msgid "Mandatory Input: No Data given!"
+#~ msgstr "必需选项:没有设置数据!"
+
+#~ msgid "Mandatory Input: No Directory given!"
+#~ msgstr "必需选项:没有设置目录!"
+
+#~ msgid "Mandatory Input: No Port given!"
+#~ msgstr "必需选项:没有设置端口!"
+
+#~ msgid "Mandatory Input: No files given!"
+#~ msgstr "必需选项:没有设置文件!"
+
+#~ msgid "Mandatory Input: No valid IPv4 address or host given!"
+#~ msgstr "必需选项:没有设置有效的 IPv4 地址或者主机!"
+
+#~ msgid "Mandatory Input: No valid IPv6 address given!"
+#~ msgstr "必需选项:没有设置有效的 IPv6 地址!"
+
+#~ msgid "Mandatory Input: No valid Port given!"
+#~ msgstr "必需选项:没有设置有效的端口!"
+
+#~ msgid "Miscellaneous"
+#~ msgstr "杂项"
+
+#~ msgid "NOT installed"
+#~ msgstr "未安装"
+
+#~ msgid "No trailing '/', please."
+#~ msgstr "路径结尾不要加“/”。"
+
+#~ msgid ""
+#~ "Only when using 'external filters', Privoxy has to create temporary files."
+#~ msgstr "只有使用外置规则时,Privoxy 才需要创建临时文件。"
+
+#~ msgid "Please install current version !"
+#~ msgstr "请安装当前版本!"
+
+#~ msgid "Please press [Read] button"
+#~ msgstr "请按下 [读取] 按钮"
+
+#~ msgid "Please update to the current version!"
+#~ msgstr "请升级到当前版本!"
+
+#~ msgid ""
+#~ "Privoxy is a non-caching web proxy with advanced filtering capabilities "
+#~ "for enhancing privacy, modifying web page data and HTTP headers, "
+#~ "controlling access, and removing ads and other obnoxious Internet junk."
+#~ msgstr ""
+#~ "Privoxy 是一个无缓存的网络代理,具有高级过滤功能,能够修改网页数据和 HTTP "
+#~ "请求头、控制访问、移除广告等。"
+
+#~ msgid "Read / Reread log file"
+#~ msgstr "读取/重新读取 日志文件"
+
+#~ msgid "Software package '%s' is not installed."
+#~ msgstr "软件包 '%s' 未安装。"
+
+#~ msgid "Software package '%s' is outdated."
+#~ msgstr "软件包“%s”已过时。"
+
+#~ msgid "Start"
+#~ msgstr "启动"
+
+#~ msgid "Start / Stop"
+#~ msgstr "启动 / 停止"
+
+#~ msgid "Start/Stop Privoxy WEB Proxy"
+#~ msgstr "启动/停止 Privoxy 网络代理"
+
+#~ msgid ""
+#~ "The directory where all logging takes place (i.e. where the logfile is "
+#~ "located)."
+#~ msgstr "所有日志所在的目录。"
+
+#~ msgid ""
+#~ "The value of this option only matters if the experimental trust mechanism "
+#~ "has been activated."
+#~ msgstr "只有开启了信任机制时这个选项的值才有效。"
+
+#~ msgid "Value is not a number"
+#~ msgstr "输入值不是一个数字"
+
+#~ msgid "Value not between 0 and 300"
+#~ msgstr "输入值不在 0 和 300 之间"
+
+#~ msgid "Value not between 0 and 9"
+#~ msgstr "输入值不在 0 和 9 之间"
+
+#~ msgid "Value not between 1 and 4096"
+#~ msgstr "输入值不在 1 和 4096 之间"
+
+#~ msgid "Value not greater 0 or empty"
+#~ msgstr "输入值为空或者不是大于零"
+
+#~ msgid "Version"
+#~ msgstr "版本"
+
+#~ msgid "Version Information"
+#~ msgstr "版本信息"
+
+#~ msgid "installed"
+#~ msgstr "已安装"
+
+#~ msgid "or higher"
+#~ msgstr "或更高"
+
+#~ msgid "required"
+#~ msgstr "需要"
"X-Generator: Weblate 5.11-dev\n"
"X-Poedit-SourceCharset: UTF-8\n"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid ""
-"A URL to be displayed in the error page that users will see if access to an "
-"untrusted page is denied."
-msgstr "當用戶試圖存取不受信任的頁面時,錯誤頁面所顯示的URL。"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
-msgid ""
-"A URL to documentation about the local Privoxy setup, configuration or "
-"policies."
-msgstr "本地 Privoxy 安裝、設定和政策文件相關的 URL。"
+"A directory where Privoxy can create temporary files.<br /><strong>Only when "
+"using 'external filters', Privoxy has to create temporary files.</strong>"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
-msgid "A directory where Privoxy can create temporary files."
-msgstr "Privoxy 存放臨時檔案的目錄。"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
+msgid "Accept intercepted requests"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "Access Control"
msgstr "存取控制"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
+msgid "Action Files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr "作用在所有站點上的規則,可能被後面的規則覆蓋。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
-msgid "An alternative directory where the templates are loaded from."
-msgstr "可選的目錄,放在裡面的範本會被載入。"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
+msgid "Admin Email"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
-msgid "An email address to reach the Privoxy administrator."
-msgstr "用於聯絡 Privoxy 管理員的郵箱地址。"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
+msgid "Allow CGI request crunching"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
+msgid ""
+"An alternative directory where the templates are loaded from.<br />No "
+"trailing \"/\", please."
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
msgstr "當服務端沒有指定超時時間時假定的超時時間(單位:秒)。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay"
msgstr "啟動延遲"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
+msgid "Buffer Limit"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface"
msgstr "CGI 使用者介面"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
+msgid "Client header order"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format"
msgstr "通用日誌格式"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
-msgid ""
-"Configure here the routing of HTTP requests through a chain of multiple "
-"proxies. Note that parent proxies can severely decrease your privacy level. "
-"Also specified here are SOCKS proxies."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
+msgid "Compression level"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
+msgid "Configuration Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
+msgid "Configure the Privoxy proxy daemon settings."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
+msgid "Connection sharing"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
+msgid "Debug 1"
msgstr ""
-"在這裡設定 HTTP 請求所經過的多重代理鏈。注意:父級代理可能嚴重降低您的隱私安"
-"全度。在這裡還可以設定 SOCKS 代理。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
+msgid "Debug 1024"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
+msgid "Debug 128"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
+msgid "Debug 16"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
+msgid "Debug 2"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
+msgid "Debug 2048"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
+msgid "Debug 256"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
+msgid "Debug 32"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
+msgid "Debug 32768"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
+msgid "Debug 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
+msgid "Debug 4096"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
+msgid "Debug 512"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
+msgid "Debug 64"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
+msgid "Debug 65536"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
+msgid "Debug 8"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
+msgid "Debug 8192"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation"
msgstr "除錯 GIF 動畫"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature"
msgstr "除錯 Force feature"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects"
msgstr "除錯重新導向"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters"
msgstr "除錯正則表示式"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
-msgid "Delay (in seconds) during system boot before Privoxy start"
-msgstr "Privoxy 自啟動延遲時間(單位:秒)"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
+msgid "Default server timeout"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
-msgid "Directory does not exist!"
-msgstr "目錄不存在!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
+msgid "Delay (in seconds) during system boot before Privoxy starts."
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
+msgid "Deny access"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode"
msgstr "禁用 == 透明代理模式"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "Documentation"
msgstr "記錄資訊"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
-msgid "During delay ifup-events are not monitored !"
-msgstr "在延遲期間,ifup-事件 不受監控!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
+msgid "Email address for the Privoxy administrator."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
+msgid "Enable action file editor"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
+msgid "Enable compression"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding"
msgstr "允許轉送代理認證"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
-msgid ""
-"Enable/Disable autostart of Privoxy on system startup and interface events"
-msgstr "啟用/禁用 Privoxy 在系統啟動或介面事件時自動啟動"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
+msgid "Enable remote toggle"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
+msgid "Enable remote toggle via HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
+msgid "Enable/Disable autostart of Privoxy"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts."
msgstr "Privoxy 啟動時啟用/禁用過濾。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled"
msgstr "已啟用"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
msgstr "如果沒有需要認證的父級代理時,不推薦開啟這個選項!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
-msgid "File '%s' not found inside Configuration Directory"
-msgstr "在設定目錄中未找到檔案“%s”"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
-msgid "File not found or empty"
-msgstr "檔案不存在或為空"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
+msgid "Enforce page blocking"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid "Files and Directories"
msgstr "檔案和目錄"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
-msgid "For help use link at the relevant option"
-msgstr "點選相應選項的連線可獲取幫助"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
+msgid "Filter files"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
+msgid "Forward HTTP"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
+msgid "Forward SOCKS 4"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
+msgid "Forward SOCKS 4A"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
+msgid "Forward SOCKS 5"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
+msgid "Forward SOCKS 5t"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding"
msgstr "轉送"
msgid "Grant UCI access for luci-app-privoxy"
msgstr "授予luci-app-privoxy存取UCI的權限"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
+msgid "Handle as empty doc returns ok"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid ""
-"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+"If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks."
-msgstr "如果啟用,Privoxy 會隱藏“go there anyway”連結,使用者就不能繞過遮蔽。"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"如果除了您還有其他使用者使用 Privoxy 連線,最好讓他們知道如何聯絡您,您遮蔽什"
"麼,您為什麼這樣做,您的政策等等。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
-msgid "Invalid email address"
-msgstr "郵箱地址無效"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
msgid "It is NOT recommended for the casual user."
msgstr "不推薦新手使用。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
+msgid "Keep-alive timeout"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
+msgid "Listen addresses"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual."
msgstr "Privoxy 使用者手冊位置。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
-msgid "Log File Viewer"
-msgstr "日誌檔案檢視器"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
+msgid "Log Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
+msgid "Log File"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network"
msgstr "記錄所有接收的網路資料"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network"
msgstr "記錄所有傳送的網路資料"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions"
msgstr "記錄配置儲存動作"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
msgstr "記錄 Privoxy 允許的所有請求。另請參考“Debug 1024”。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
msgstr "記錄 Privoxy 拒絕的請求目標以及拒絕原因。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
-msgid "Logging"
-msgstr "日誌"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Main actions file"
msgstr "主要規則檔案"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
-msgid "Mandatory Input: No Data given!"
-msgstr "必需選項:沒有設定資料!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
-msgid "Mandatory Input: No Directory given!"
-msgstr "必需選項:沒有設定目錄!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No File given!"
msgstr "必需選項:沒有設定檔案!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
-msgid "Mandatory Input: No Port given!"
-msgstr "必需選項:沒有設定埠!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
-msgid "Mandatory Input: No files given!"
-msgstr "必需選項:沒有設定檔案!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
-msgid "Mandatory Input: No valid IPv4 address or host given!"
-msgstr "必需選項:沒有設定有效的 IPv4 地址或者主機!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
-msgid "Mandatory Input: No valid IPv6 address given!"
-msgstr "必需選項:沒有設定有效的 IPv6 地址!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
-msgid "Mandatory Input: No valid Port given!"
-msgstr "必需選項:沒有設定有效的埠!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
+msgid "Max. client connections"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
msgid "Maximum number of client connections that will be served."
msgstr "客戶端數量上限。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr "內容過濾的最大緩衝(單位:KB)。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
-msgid "Miscellaneous"
-msgstr "雜項"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
-msgid "NOT installed"
-msgstr "未安裝"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
-msgid "No trailing '/', please."
-msgstr "路徑結尾不要加“/”。"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
+msgid "Misc"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr "非致命性錯誤 - *強烈建議啟用*"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr "Socket 連線未收到資料的超時時間。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr "開放的連線不再重複使用的超時時間。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
-msgid ""
-"Only when using 'external filters', Privoxy has to create temporary files."
-msgstr "只有使用外接規則時,Privoxy 才需要建立臨時檔案。"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
-msgid "Please install current version !"
-msgstr "請安裝當前版本!"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
-msgid "Please press [Read] button"
-msgstr "請按「讀取」按鈕"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
+msgid "Permit access"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Please read Privoxy manual for details!"
msgstr "請閱讀 Privoxy 手冊以瞭解詳情!"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
-msgid "Please update to the current version!"
-msgstr "請升級到當前版本!"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
+msgid "Privoxy"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
+msgid "Privoxy Settings"
+msgstr ""
+
+#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy"
msgstr "Privoxy 網路代理"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"Privoxy 可以(而且一般都會)使用其他一些檔案用於附加設定,幫助和日誌。這個區"
"域用來告訴 Privoxy 從哪裡找到這些檔案。"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
-msgid ""
-"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
-"enhancing privacy, modifying web page data and HTTP headers, controlling "
-"access, and removing ads and other obnoxious Internet junk."
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
+msgid "Proxy Info URL"
msgstr ""
-"Privoxy是一個具有高階過濾功能的無快取網路代理,能夠修改網頁資料和HTTP請求標"
-"頭、控制存取、移除廣告等。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
-msgid "Read / Reread log file"
-msgstr "讀取/重讀日誌檔案"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Show I/O status"
msgstr "顯示 I/O 狀態"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status"
msgstr "顯示每個連線的狀態"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing"
msgstr "顯示請求頭 解析"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
-msgid "Software package '%s' is not installed."
-msgstr "未安裝套件 '%s'。"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
-msgid "Software package '%s' is outdated."
-msgstr "軟體包“%s”已過時。"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
-#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
-msgid "Start"
-msgstr "啟動"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
+msgid "Single Threaded"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
-msgid "Start / Stop"
-msgstr "啟動 / 停止"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
+msgid "Socket timeout"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
-msgid "Start/Stop Privoxy WEB Proxy"
-msgstr "啟動/停止 Privoxy 網路代理"
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
+msgid "Split large forms"
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Startup banner and warnings."
msgstr "啟動標語和警告。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
msgid "Syntax:"
msgstr "語法:"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces."
msgstr "格式:由空格分隔的客戶端請求頭名稱。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
+msgid ""
+"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]"
msgstr "格式:target_pattern http_parent[:port]"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
+msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System"
msgstr "系統"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
+msgid "Template Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
+msgid "Temporary Directory"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
msgstr "要使用的動作文件。允許使用多個actionfile行,實際上是建議使用!"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr "Privoxy 接收客戶端請求時監聽的地址和 TCP 埠。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
msgstr "使用 zlib 壓縮緩衝內容時的壓縮級別。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
-"located)."
-msgstr "所有日誌所在的目錄。"
+"located).<br />No trailing \"/\", please."
+msgstr ""
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located."
msgstr "其他設定檔案所在的目錄。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
msgstr "過濾檔案包含了使用正則表示式編寫的內容修改規則。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages."
msgstr "CGI 頁面顯示的主機名。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory."
msgstr "要使用的日誌檔;檔案名稱與日誌目錄相對。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them."
msgstr "轉送資料前,客戶端請求頭的排序。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
msgstr "狀態代碼Privoxy返回被+ handle-as-empty-document阻止的頁面。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
msgstr "信任機制是一個實驗性的白名單特性,使用時應小心。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
-msgid ""
-"The value of this option only matters if the experimental trust mechanism "
-"has been activated."
-msgstr "只有開啟了信任機制時這個選項的值才有效。"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
msgstr "這個選項僅用於除錯,開啟後會極大地降低效能。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
msgstr "這個選項在以後的版本中將被移除,因為它被 header taggers 所取代了。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr "這個標籤用於設定與安全相關的 Privoxy 選項。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
msgstr ""
"指定的請求應該通過哪一個 SOCKS 代理(並且通過哪一個 HTTP 父代理,可選)。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr "請求應轉送至哪一個父級HTTP代理。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
+msgid "Toggle Status"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
+msgid "Tolerate pipelining"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
+msgid "Trust Info URL"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
+msgid "Trust file"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
+msgid ""
+"URL shown if access to an untrusted page is denied. Only applies if trust "
+"mechanism is enabled."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
+msgid "URL to documentation about the local Privoxy setup."
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
+msgid "User Manual"
+msgstr ""
+
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
msgid "User customizations"
msgstr "使用者自訂"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
-msgid "Value is not a number"
-msgstr "值不是號碼"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
-msgid "Value not between 0 and 300"
-msgstr "值不介在 0 和 300 之間"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
-msgid "Value not between 0 and 9"
-msgstr "輸入值不在 0 和 9 之間"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
-msgid "Value not between 1 and 4096"
-msgstr "輸入值不在 1 和 4096 之間"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
-msgid "Value not greater 0 or empty"
-msgstr "輸入值為空或者不是大於零"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr "輸入值為 1 到 4096,預設為 4096"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
-msgid "Version"
-msgstr "版本"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
-msgid "Version Information"
-msgstr "版本資訊"
-
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
msgid "Whether intercepted requests should be treated as valid."
msgstr "是否應把被攔截的請求當作是有效的。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
msgstr "是否讓 Privoxy 識別特殊的 HTTP 請求頭以切換狀態。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery."
msgstr "是否在傳遞之前壓縮緩衝內容。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
msgstr "是否應在不同的入站連線之間共享持久出站連線。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served."
msgstr "是否處理管道化的請求。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr "是否可以通過 Privoxy 進行代理驗證。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used."
msgstr "是否使用基於網頁的規則編輯器。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used."
msgstr "是否啟用基於網頁的切換功能。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr "可否阻止或重新導向對Privoxy CGI頁面的請求。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr "是否讓CGI介面相容過時的HTTP用戶端。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread."
msgstr "是否只執行一個服務執行緒。"
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
-#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
+#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what."
msgstr "誰可以存取什麼。"
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
-msgid "installed"
-msgstr "已安裝"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "or higher"
-msgstr "或更高"
-
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
-#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
-msgid "required"
-msgstr "需要"
+#~ msgid ""
+#~ "A URL to be displayed in the error page that users will see if access to "
+#~ "an untrusted page is denied."
+#~ msgstr "當用戶試圖存取不受信任的頁面時,錯誤頁面所顯示的URL。"
+
+#~ msgid ""
+#~ "A URL to documentation about the local Privoxy setup, configuration or "
+#~ "policies."
+#~ msgstr "本地 Privoxy 安裝、設定和政策文件相關的 URL。"
+
+#~ msgid "A directory where Privoxy can create temporary files."
+#~ msgstr "Privoxy 存放臨時檔案的目錄。"
+
+#~ msgid "An alternative directory where the templates are loaded from."
+#~ msgstr "可選的目錄,放在裡面的範本會被載入。"
+
+#~ msgid "An email address to reach the Privoxy administrator."
+#~ msgstr "用於聯絡 Privoxy 管理員的郵箱地址。"
+
+#~ msgid ""
+#~ "Configure here the routing of HTTP requests through a chain of multiple "
+#~ "proxies. Note that parent proxies can severely decrease your privacy "
+#~ "level. Also specified here are SOCKS proxies."
+#~ msgstr ""
+#~ "在這裡設定 HTTP 請求所經過的多重代理鏈。注意:父級代理可能嚴重降低您的隱私"
+#~ "安全度。在這裡還可以設定 SOCKS 代理。"
+
+#~ msgid "Delay (in seconds) during system boot before Privoxy start"
+#~ msgstr "Privoxy 自啟動延遲時間(單位:秒)"
+
+#~ msgid "Directory does not exist!"
+#~ msgstr "目錄不存在!"
+
+#~ msgid "During delay ifup-events are not monitored !"
+#~ msgstr "在延遲期間,ifup-事件 不受監控!"
+
+#~ msgid ""
+#~ "Enable/Disable autostart of Privoxy on system startup and interface events"
+#~ msgstr "啟用/禁用 Privoxy 在系統啟動或介面事件時自動啟動"
+
+#~ msgid "File '%s' not found inside Configuration Directory"
+#~ msgstr "在設定目錄中未找到檔案“%s”"
+
+#~ msgid "File not found or empty"
+#~ msgstr "檔案不存在或為空"
+
+#~ msgid "For help use link at the relevant option"
+#~ msgstr "點選相應選項的連線可獲取幫助"
+
+#~ msgid ""
+#~ "If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
+#~ "should not be able to bypass any blocks."
+#~ msgstr ""
+#~ "如果啟用,Privoxy 會隱藏“go there anyway”連結,使用者就不能繞過遮蔽。"
+
+#~ msgid "Invalid email address"
+#~ msgstr "郵箱地址無效"
+
+#~ msgid "Log File Viewer"
+#~ msgstr "日誌檔案檢視器"
+
+#~ msgid "Logging"
+#~ msgstr "日誌"
+
+#~ msgid "Mandatory Input: No Data given!"
+#~ msgstr "必需選項:沒有設定資料!"
+
+#~ msgid "Mandatory Input: No Directory given!"
+#~ msgstr "必需選項:沒有設定目錄!"
+
+#~ msgid "Mandatory Input: No Port given!"
+#~ msgstr "必需選項:沒有設定埠!"
+
+#~ msgid "Mandatory Input: No files given!"
+#~ msgstr "必需選項:沒有設定檔案!"
+
+#~ msgid "Mandatory Input: No valid IPv4 address or host given!"
+#~ msgstr "必需選項:沒有設定有效的 IPv4 地址或者主機!"
+
+#~ msgid "Mandatory Input: No valid IPv6 address given!"
+#~ msgstr "必需選項:沒有設定有效的 IPv6 地址!"
+
+#~ msgid "Mandatory Input: No valid Port given!"
+#~ msgstr "必需選項:沒有設定有效的埠!"
+
+#~ msgid "Miscellaneous"
+#~ msgstr "雜項"
+
+#~ msgid "NOT installed"
+#~ msgstr "未安裝"
+
+#~ msgid "No trailing '/', please."
+#~ msgstr "路徑結尾不要加“/”。"
+
+#~ msgid ""
+#~ "Only when using 'external filters', Privoxy has to create temporary files."
+#~ msgstr "只有使用外接規則時,Privoxy 才需要建立臨時檔案。"
+
+#~ msgid "Please install current version !"
+#~ msgstr "請安裝當前版本!"
+
+#~ msgid "Please press [Read] button"
+#~ msgstr "請按「讀取」按鈕"
+
+#~ msgid "Please update to the current version!"
+#~ msgstr "請升級到當前版本!"
+
+#~ msgid ""
+#~ "Privoxy is a non-caching web proxy with advanced filtering capabilities "
+#~ "for enhancing privacy, modifying web page data and HTTP headers, "
+#~ "controlling access, and removing ads and other obnoxious Internet junk."
+#~ msgstr ""
+#~ "Privoxy是一個具有高階過濾功能的無快取網路代理,能夠修改網頁資料和HTTP請求"
+#~ "標頭、控制存取、移除廣告等。"
+
+#~ msgid "Read / Reread log file"
+#~ msgstr "讀取/重讀日誌檔案"
+
+#~ msgid "Software package '%s' is not installed."
+#~ msgstr "未安裝套件 '%s'。"
+
+#~ msgid "Software package '%s' is outdated."
+#~ msgstr "軟體包“%s”已過時。"
+
+#~ msgid "Start"
+#~ msgstr "啟動"
+
+#~ msgid "Start / Stop"
+#~ msgstr "啟動 / 停止"
+
+#~ msgid "Start/Stop Privoxy WEB Proxy"
+#~ msgstr "啟動/停止 Privoxy 網路代理"
+
+#~ msgid ""
+#~ "The directory where all logging takes place (i.e. where the logfile is "
+#~ "located)."
+#~ msgstr "所有日誌所在的目錄。"
+
+#~ msgid ""
+#~ "The value of this option only matters if the experimental trust mechanism "
+#~ "has been activated."
+#~ msgstr "只有開啟了信任機制時這個選項的值才有效。"
+
+#~ msgid "Value is not a number"
+#~ msgstr "值不是號碼"
+
+#~ msgid "Value not between 0 and 300"
+#~ msgstr "值不介在 0 和 300 之間"
+
+#~ msgid "Value not between 0 and 9"
+#~ msgstr "輸入值不在 0 和 9 之間"
+
+#~ msgid "Value not between 1 and 4096"
+#~ msgstr "輸入值不在 1 和 4096 之間"
+
+#~ msgid "Value not greater 0 or empty"
+#~ msgstr "輸入值為空或者不是大於零"
+
+#~ msgid "Version"
+#~ msgstr "版本"
+
+#~ msgid "Version Information"
+#~ msgstr "版本資訊"
+
+#~ msgid "installed"
+#~ msgstr "已安裝"
+
+#~ msgid "or higher"
+#~ msgstr "或更高"
+
+#~ msgid "required"
+#~ msgstr "需要"
--- /dev/null
+{
+ "admin/services/privoxy": {
+ "title": "Privoxy WEB proxy",
+ "action": {
+ "type": "view",
+ "path": "privoxy/privoxy"
+ },
+ "depends": {
+ "acl": [ "luci-app-privoxy" ]
+ }
+ }
+}